forked from NTUEELightDance/LightDance-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 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
31
32
{
"name": "2021-lightdance-editor",
"version": "0.1.0",
"private": true,
"scripts": {
"install:editor": "yarn install --cwd ./editor",
"install:editor-server": "yarn install --cwd ./editor-server",
"install:controller-server": "yarn install --cwd ./controller-server",
"install:file-server": "yarn install --cwd ./file-server",
"install:all": "(yarn install); (yarn install:editor); (yarn install:editor-server); (yarn install:controller-server); (yarn install:file-server)",
"dev:editor": "cd ./editor && yarn start",
"dev:editor-server": "cd ./editor-server && yarn start",
"dev:controller-server": "cd ./controller-server && yarn start",
"dev:file-server": "cd ./file-server && yarn start",
"dev": "run-p dev:*"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}