-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1013 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1013 Bytes
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
{
"name": "draw-app",
"private": true,
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"build:all": "pnpm build:http && pnpm build:ws && pnpm build:frontend",
"dev:http": "pnpm --filter http-backend dev",
"dev:ws": "pnpm --filter ws-backend dev",
"dev:frontend": "pnpm --filter exceldraw-frontend dev",
"build:http": "pnpm --filter http-backend build",
"build:ws": "pnpm --filter ws-backend build",
"build:frontend": "pnpm --filter exceldraw-frontend build",
"start:http": "pnpm --filter http-backend start",
"start:ws": "pnpm --filter ws-backend start",
"start:frontend": "pnpm --filter exceldraw-frontend start",
"start": "pnpm build && concurrently \"pnpm start:http\" \"pnpm start:ws\" \"pnpm start:frontend\""
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}