forked from freeboardgames/FreeBoardGames.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 979 Bytes
/
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
33
{
"name": "fbg-runner",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"codegen": "node cli/codegen/cli.js",
"test": "node cli/test/test.js",
"lint": "node cli/lint/lint.js",
"fix": "node cli/fix/fix.js",
"dev": "node cli/dev/cli.js",
"ci": "run-s test ci:web",
"storybook": "cd web/ && yarn run storybook",
"dev:internal": "run-p web:dev backend:dev",
"backend:dev": "cd fbg-server/ && yarn run start",
"ci:web": "cd web/ && yarn run ci",
"install:backend": "cd fbg-server/ && yarn install",
"install:web": "cd web/ && yarn install",
"postinstall": "run-s install:*",
"test:backend": "cd fbg-server/ && yarn run test",
"test:web": "cd web/ && yarn run test",
"web:dev": "cd web/ && yarn run dev:internal"
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"chalk": "^4.1.0",
"shelljs": "^0.8.4"
}
}