-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "weshier",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon app.js\" \"npm run dev:client\"",
"dev:client": "cross-env NODE_ENV=development webpack --config build/webpack.dev.conf.js --watch",
"build": "webpack --config build/webpack.prod.conf.js",
"setup": "pm2 deploy ecosystem.config.js production setup",
"deploy": "pm2 deploy ecosystem.config.js production",
"easy-deploy": "cross-env NODE_ENV=production pm2 startOrRestart app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^3.2.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"connect-redis": "^4.0.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "^1.8.28",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.5.0",
"express-winston": "^4.0.3",
"file-stream-rotator": "^0.5.7",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.8",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"querystring": "^0.2.0",
"redis": "^3.0.2",
"require-directory": "^2.1.1",
"sequelize": "^5.21.12",
"sequelize-cli": "^5.5.1",
"swiper": "^5.4.2",
"toastr": "^2.1.4",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"autoprefixer": "^9.8.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.1",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"scss-loader": "^0.0.1",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
}
}