-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3 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
{
"name": "react-full-stack",
"version": "1.0.0",
"description": "Boilerplate to build a full stack web application using MongoDB, Redis, Node.js, Express, React and Webpack",
"main": "src/server/index.js",
"scripts": {
"start": "npm run build && pm2 reload config/pm2/ecosystem.config.js --env production",
"stop": "pm2 stop config/pm2/ecosystem.config.js",
"delete": "pm2 delete config/pm2/ecosystem.config.js",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --config config/webpack/webpack.build.config.js --mode production",
"build:server": "babel src --out-dir lib",
"dev:start": "npm run dev:stop && pm2 start config/pm2/ecosystem.dev.config.js && pm2 logs --lines 0",
"dev:stop": "pm2 stop config/pm2/ecosystem.dev.config.js && npm run dev:delete",
"dev:delete": "pm2 delete config/pm2/ecosystem.dev.config.js"
},
"author": "Denis Tyossa",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"pm2": "^3.5.1",
"pm2-logrotate": "^2.6.0",
"connect-redis": "^3.4.1",
"cookie-parser": "^1.4.4",
"express": "^4.16.3",
"helmet": "^3.18.0",
"csurf": "^1.10.0",
"body-parser": "^1.19.0",
"express-session": "^1.16.1",
"ignore-styles": "^5.0.1",
"mongodb": "^3.2.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"redis": "^2.8.0",
"module-alias": "^2.2.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-remember-me": "^0.0.1",
"axios": "^0.19.0",
"camelcase": "^5.3.1",
"deep-equal": "^1.0.1",
"@babel/core": "^7.4.4",
"@babel/cli": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"browser-cookies": "^1.2.0",
"validator": "^11.0.0",
"color": "^3.1.1",
"nanoid": "^2.0.3",
"node-sass": "^4.12.0",
"webpack": "^4.5.0",
"webpack-cli": "^3.0.8",
"babel-loader": "^8.0.0",
"file-loader": "^3.0.1",
"url-loader": "^1.0.1",
"css-loader": "^2.0.0",
"sass-loader": "^7.1.0",
"mini-css-extract-plugin": "^0.6.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"clean-webpack-plugin": "^2.0.1",
"path-to-regexp": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"@hot-loader/react-dom": "^16.8.6",
"prettier": "1.17.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"webpack-dev-server": "^3.1.3",
"swagger-jsdoc": "^3.2.9",
"redoc": "^2.0.0-rc.8-1",
"js-yaml": "^3.13.1",
"error-overlay-webpack-plugin": "^0.4.0"
}
}