-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 848 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "stacktris",
"private": true,
"version": "0.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -n backend,frontend -c cyan,magenta \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=packages/backend",
"dev:frontend": "npm run dev --workspace=packages/frontend",
"build": "npm run build --workspace=packages/shared && npm run build --workspace=packages/frontend && npm run build --workspace=packages/backend",
"build:shared": "npm run build --workspace=packages/shared",
"test:shared": "npm run test --workspace=packages/shared",
"test": "npm run test --workspace=packages/shared && npm run test --workspace=packages/backend && npm run test --workspace=packages/frontend"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}