-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.37 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
{
"name": "quick-full-stack-kit",
"version": "1.0.0",
"description": "A quick full starter kit that utilizes the modern kit for a full stack app. It is designed to as setup as simple as possible to extend for different uses.",
"main": "server.js",
"scripts": {
"build": "webpack --mode production",
"server": "node server.js",
"start": "webpack-dev-server --mode development",
"test": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-classes": "^7.9.5",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"autoprefixer": "^9.7.6",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^3.1.0",
"css-loader": "^1.0.1",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.3.0",
"jest-enzyme": "^7.1.2",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-advanced-variables": "^3.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"react-test-renderer": "^16.13.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.6",
"url-loader": "^1.1.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"history": "^4.10.1",
"moment": "^2.24.0",
"prop-types": "^15.6.2",
"qs": "^6.9.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^5.1.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.3.0",
"uuid": "^8.2.0"
},
"engineStrict": true,
"engines": {
"node": "12.13.x"
}
}