-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vexdata",
"version": "1.0.0",
"description": "A website providing VEX competition data.",
"keywords": [
"VEX",
"robotics",
"competition"
],
"homepage": "https://vexdata.herokuapp.com",
"bugs": {
"url": "https://github.com/jtkiesel/vexdata/issues"
},
"license": "MIT",
"author": {
"name": "Jordan T Kiesel"
},
"repository": {
"type": "git",
"url": "https://github.com/jtkiesel/vexdata.git"
},
"scripts": {
"dev": "concurrently --kill-others-on-fail \"nodemon -L\" \"nodemon -L --inspect --exec babel-node server\"",
"prod": "npm run build && concurrently \"npm run start\" \"NODE_ENV=production node build/server\"",
"heroku-postbuild": "npm run build",
"start": "react-scripts start",
"build": "react-scripts build && babel server -d build/server",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@material-ui/core": "^4.9.9",
"@material-ui/icons": "^4.9.1",
"@material/react-card": "^0.15.0",
"@material/react-drawer": "^0.15.0",
"@material/react-layout-grid": "^0.15.0",
"@material/react-list": "^0.15.0",
"@material/react-material-icon": "^0.15.0",
"@material/react-tab": "^0.15.0",
"@material/react-tab-bar": "^0.15.0",
"@material/react-tab-indicator": "^0.15.0",
"@material/react-tab-scroller": "^0.15.0",
"@material/react-text-field": "^0.15.0",
"@material/react-top-app-bar": "^0.15.0",
"@material/react-typography": "^0.15.0",
"@material/theme": "^4.0.0",
"@rmwc/tabs": "^5.7.2",
"axios": "^0.19.2",
"compression": "^1.7.4",
"express": "^4.17.1",
"mongodb": "^3.5.5",
"node-sass": "^4.13.1",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"serve": "^11.3.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/node": "^12.12.34",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.3",
"concurrently": "^5.1.0",
"nodemon": "^2.0.2"
},
"engines": {
"node": "^13.11.0",
"npm": "^6.13.7"
},
"private": true,
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:5000"
}