-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "scouter",
"version": "0.3.0",
"description": "A scouting utility to for use in FRC regional events",
"author": "NicolasNewman <[email protected]> (https://github.com/NicolasNewman/)",
"contributors": [
"NicolasNewman <[email protected]> (https://github.com/NicolasNewman/)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NicolasNewman/scouter.git"
},
"keywords": [
"react",
"typescript",
"nodejs",
"express",
"visual-studio-code",
"chrome-devtools",
"webpack",
"webpack-dev-server",
"typestyle",
"react-testing-library",
"supertest",
"jest",
"semantic-ui",
"boilerplate"
],
"files": [
"./client/*",
"./server/*",
"./launcher/*"
],
"scriptsComments": {
"note": "The 'scripts' section is limited. Please refer to ./README.md, ./client/package.json, ./server/package.json"
},
"scripts": {
"install": "cd client && yarn",
"postinstall": "cd server && yarn",
"test": "cd client && yarn test",
"posttest": "cd server && yarn copy && yarn test",
"compile": "cd client && yarn compile",
"postcompile": "cd server && yarn compile",
"build": "cd client && yarn build",
"postbuild": "cd server && yarn prestart",
"build:prod": "cd client && yarn build:prod",
"postbuild:prod": "cd server && yarn prestart",
"start:prod": "cd client && yarn build:prod",
"poststart:prod": "cd server && yarn start:prod",
"run:prod": "cd server && yarn run:prod",
"copy-global-client": "copyfiles -f global/* client/src/global",
"copy-global-server": "copyfiles -f global/* server/src/global",
"copy": "yarn copy-global-client && yarn copy-global-server",
"dev-server": "cd server && yarn dev",
"dev-client": "cd client && yarn dev",
"dev": "npm-run-all copy --parallel dev-server dev-client",
"build-win": "yarn copy && cd launcher && yarn package-win"
},
"devDependencies": {
"copyfiles": "^2.2.0",
"npm-run-all": "^4.1.5",
"yargs": "^15.1.0"
}
}