forked from chebotarew/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.66 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
87
88
89
90
91
92
93
{
"name": "hackaton",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --exit",
"start": "node server/app.js",
"dev": "nodemon --exec node server/app.js",
"front:dev": "cross-env NODE_OPTIONS=--max_old_space_size=4096 webpack-dev-server --open --inline --local",
"front:build": "cross-env NODE_OPTIONS=--max_old_space_size=1024 NODE_ENV=production webpack --config webpack.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-decorators": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mocha": "^5.2.0",
"node-fetch": "^2.3.0",
"nodemon": "^1.19.1",
"pug": "^2.0.4",
"pug-html-loader": "^1.1.5",
"raw-loader": "^3.1.0",
"sass": "^1.22.10",
"sass-loader": "^8.0.0",
"should": "^13.2.3",
"style-loader": "^1.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"antd": "^3.19.7",
"babel-preset-es2017": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chart.js": "^2.8.0",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"cross-env": "^5.2.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.16.2",
"express-status-monitor": "^1.2.6",
"helmet": "^3.20.1",
"history": "^4.10.1",
"jwt-simple": "^0.5.5",
"lodash": "^4.17.15",
"lusca": "^1.6.1",
"mongoose": "^5.3.14",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"random-color": "^1.0.1",
"randomcolor": "^0.5.4",
"react": "^16.8.6",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.8.6",
"react-here-maps": "^0.4.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"react-yandex-maps": "^4.0.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-saga": "^1.0.3"
}
}