-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.48 KB
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
{
"scripts": {
"dev": "nodemon start.js --ignore assets/",
"all": "concurrently \"npm run dev\" \"npm run watch\"",
"start": "node start.js",
"build": "webpack --env.NODE_ENV=prod -p --config ./webpack.config.js --display-error-details",
"watch": "webpack --env.NODE_ENV=dev -d --watch --config ./webpack.config.js --display-error-details",
"heroku-postbuild": "npm run build"
},
"name": "",
"version": "",
"dependencies": {
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"express-validator": "^5.3.1",
"googleapis": "^37.2.0",
"html-to-text": "^4.0.0",
"imagekit": "^1.4.1",
"jsonwebtoken": "^8.5.0",
"moment": "^2.24.0",
"mongoose": "^5.3.8",
"mongoose-slug-generator": "^1.0.4",
"multer": "^1.4.1",
"nodemailer": "^5.1.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pug": "^2.0.3",
"pusher": "^2.2.0",
"serve-favicon": "^2.5.0",
"stripe": "^6.28.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.9",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"css-loader": "^2.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.11",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}