-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 773 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 773 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
{
"type": "module",
"scripts": {
"i:game": "cd game && npm i",
"i:all": "concurrently \"npm run i:game\"",
"-i-": "echo 'instal'",
"ci:game": "cd game && npm ci",
"ci:all": "concurrently \"npm run ci:game\"",
"-ci-": "echo 'c instal'",
"start:game": "cd game && npm start",
"start:pdf": "live-server --port=8080 --open=./pdf --watch=./pdf",
"start": "concurrently \"npm run start:game\" \"npm run start:pdf\"",
"-start-": "echo 'start'",
"build:game": "cd game && npm run build",
"build": "concurrently \"npm run build:game\"",
"-build-": "echo 'build'",
"copy-build": "node scripts/moveBuild.js"
},
"dependencies": {
"concurrently": "^9.2.1",
"fs-extra": "^11.3.2",
"live-server": "^1.2.2"
}
}