-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.03 KB
/
package.json
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
{
"name": "space-sim",
"workspaces": [
"projects/shared",
"projects/server",
"projects/client"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./docs",
"build": "npm run build --workspaces --if-present && npm run copy-dist-to-root && npm run copy-docs-to-root",
"build:dev": "npm run build:dev --workspaces --if-present",
"copy-dist-to-root": "copyfiles -u 3 \"./projects/**/dist/**/*\" ./dist/",
"copy-docs-to-root": "copyfiles -u 3 \"./projects/**/docs/**/*\" ./docs/",
"test": "npm run test --workspaces --if-present",
"start": "npm run start --workspaces --if-present",
"start:dev": "npm run start:dev --workspaces --if-present",
"test:shared": "npm run test -w space-sim-shared"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"dpdm": "^3.9.0",
"lerna": "^5.5.2",
"rimraf": "^3.0.2",
"typedoc": "^0.23.15"
},
"private": true,
"engines": {
"node": ">=16 <19"
}
}