-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.21 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": "the-collegiate-alliance",
"version": "0.0.1",
"description": "Official Live Results For FIRST Alumni Collegiate Competition",
"scripts": {
"serve": "webpack-dev-server --config ./config/webpack.client.config.js --open",
"build-client": "webpack --config ./config/webpack.client.config.js",
"build-server": "webpack --config ./config/webpack.server.config.js",
"build": "npm run build-client && npm run build-server",
"build-client-prod": "webpack --config ./config/webpack.client.config.js --mode=production",
"build-server-prod": "webpack --config ./config/webpack.server.config.js --mode=production",
"build-prod": "npm run build-client-prod && npm run build-server-prod",
"start": "nodemon build/server/index.js --config nodemon.json"
},
"author": "Kyle Flynn",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@material-ui/core": "^4.3.1",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.23",
"@the-orange-alliance/lib-ems": "^0.9.2-b",
"axios": "^0.21.2",
"axios-hooks": "^1.2.1",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"https": "^1.0.0",
"moment": "^2.24.0",
"path": "^0.12.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.3.0",
"redux": "^4.0.4",
"request": "^2.88.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/express-http-proxy": "^1.5.12",
"@types/node": "^15.6.1",
"@types/react": "^16.8.24",
"@types/react-dom": "^16.8.5",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^5.3.3",
"@types/request": "^2.48.2",
"babel-loader": "^8.0.6",
"dotenv": "^8.0.0",
"file-loader": "^4.1.0",
"nodemon": "^1.19.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}