-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 600 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "warpcore",
"private": true,
"version": "0.4.8",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -n server,app -c blue,green \"npm run dev -w @warpcore/server\" \"npm run dev -w @warpcore/app\"",
"dev:server": "npm run dev -w @warpcore/server",
"dev:app": "npm run dev -w @warpcore/app",
"dev:desktop": "npm run dev -w @warpcore/desktop",
"build": "npm run build -w @warpcore/app",
"build:desktop": "npm run build -w @warpcore/desktop",
"release": "bash release.sh"
},
"devDependencies": {
"concurrently": "^9.1.2",
"cross-env": "^10.1.0"
}
}