-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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": "scouting-rockets",
"version": "0.1.0",
"description": "Simple website that handles scouting assignments for NBA games",
"author": "Patrick Lin <patrick@patricklin.ca>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/patricklinpl/scouting-rockets.git"
},
"main": "dist/index.js",
"scripts": {
"start": "npm run build-react && npm run build && node dist/index.js",
"build": "npm run clean && shx mkdir -p dist && babel server -s -D -d dist",
"prod": "npm run build-react && npm run build",
"start-react": "react-scripts start",
"build-react": "rm -rf public/build && react-scripts build && mv build public",
"clean": "rimraf dist"
},
"proxy": "http://localhost:8080",
"dependencies": {
"@material-ui/core": "^3.3.2",
"ajv": "^6.5.4",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"morgan": "^1.9.0",
"prop-types": "^15.6.2",
"qs": "^6.5.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.1"
},
"devDependencies": {
"babel-register": "^6.26.0",
"dotenv": "^4.0.0",
"shx": "^0.2.2",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}