This repository was archived by the owner on Nov 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "trz-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"repository": "https://github.com/mosaiq-software/terrazzo-api",
"scripts": {
"start": "tsx watch src/index.ts",
"start:prod": "npm ci && npm i @mosaiq/terrazzo-common@latest && npm run start",
"prepare": "husky",
"after-push": "node ./scripts/after-push.mjs",
"before-push": "node ./scripts/before-push.mjs",
"lint": "eslint .",
"types": "tsc --noemit",
"update": "git fetch origin develop && git merge origin/develop",
"pretty": "prettier --write \"./**/*.{ts,tsx,json}\""
},
"author": "",
"license": "UNLICENCED",
"dependencies": {
"@mosaiq/terrazzo-common": "../terrazzo-common/dist",
"@socket.io/admin-ui": "^0.5.1",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fuse.js": "^7.1.0",
"query-string": "^9.1.1",
"sequelize": "^6.37.5",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"y-protocols": "^1.0.6",
"yjs": "^13.6.27"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"open": "^10.1.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.24.1"
}
}