-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
66
67
{
"name": "uci",
"version": "1.0.0",
"description": "UCI App",
"main": "src/server/devServer.js",
"scripts": {
"test": "mocha",
"lint:js": "eslint . --fix",
"start": "node src/server/prodServer.js",
"build": "webpack --config webpack.config.prod.js -p",
"postinstall": "npm run build",
"dev": "nodemon"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@sendgrid/mail": "^6.4.0",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^2.0.1",
"concurrently": "^4.1.0",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"css-loader": "^2.1.1",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.16.4",
"html-webpack-plugin": "^3.2.0",
"mongoose": "^5.5.11",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemon": "^1.19.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.8",
"react-router-dom": "^5.0.0",
"style-loader": "^0.23.1",
"validator": "^11.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"babel-loader": "^8.0.5",
"compression-webpack-plugin": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^1.2.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack-dev-server": "^3.3.1",
"webpack-node-externals": "^1.7.2"
}
}