-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"description": "Billing Portal",
"main": "server/index.js",
"scripts": {
"dev": "cross-env MODE=development concurrently -r \" nodemon --watch\" \"webpack-dev-server --hot --inline\"",
"serve": "cross-env MODE=production npm run build && node server/index.js",
"build": "webpack --mode production"
},
"author": "Joshua Davis",
"license": "MIT",
"dependencies": {
"@emotion/core": "^10.0.27",
"@emotion/styled": "^10.0.27",
"@material-ui/core": "^4.8.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.2",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"forever": "^2.0.0",
"jsonfile": "^5.0.0",
"morgan": "^1.10.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sendmail": "^1.6.1",
"uuid": "^7.0.3"
},
"husky": {
"hooks": {
"pre-push": "npm run build"
}
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.0.2",
"css-loader": "^3.4.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"open-cli": "^5.0.0",
"react-hot-loader": "^4.12.18",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}