-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.26 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.26 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
{
"name": "enigma-monorepo",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "pnpm install --frozen-lockfile && pnpm --filter backend build",
"build:frontend": "cd apps/frontend && pnpm build",
"build:frontend:prod": "cd apps/frontend && $env:VITE_BACKEND_SERVER_URL='https://enigmaserver--enigma-d05b9.asia-southeast1.hosted.app'; pnpm build",
"deploy:hosting": "pnpm run build:frontend:prod && firebase deploy --only hosting",
"start": "node apps/backend/dist/src/index.js",
"lint": "turbo run lint",
"dev": "turbo run dev --parallel"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"firebase-admin": "^13.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"nodemon": "^3.1.10",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-declaration-strict-value": "^1.10.11",
"ts-node": "^10.9.2",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.26.1"
}