-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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": "now-thats-delicious",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">= 7.6.0"
},
"now": {
"dotenv": "variables.env.now"
},
"scripts": {
"start": "node ./start.js",
"watch": "nodemon ./start.js --ignore public/",
"dev": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\" --prefix name",
"assets": "webpack -w --display-max-modules 0",
"sample": "node ./data/load-sample-data.js",
"blowitallaway": "node ./data/load-sample-data.js --delete",
"now": "now -e DB_USER=@db_user -e DB_PASS=@db_pass -e NODE_ENV=\"production\" -e PORT=80"
},
"browserslist": "last 3 versions",
"dependencies": {
"axios": "0.18.1",
"body-parser": "1.18.3",
"connect-flash": "0.1.1",
"connect-mongo": "2.0.1",
"cookie-parser": "1.4.3",
"dompurify": "1.0.5",
"dotenv": "6.0.0",
"es6-promisify": "6.0.0",
"esm": "^3.0.64",
"express": "4.16.3",
"express-session": "1.15.6",
"express-validator": "5.2.0",
"faker": "4.1.0",
"forever": "0.15.3",
"glob": "7.1.2",
"html-to-text": "4.0.0",
"jimp": "0.2.28",
"juice": "4.3.1",
"md5": "2.2.1",
"moment": "2.22.2",
"mongoose": "5.2.1",
"mongoose-mongodb-errors": "0.0.2",
"multer": "1.3.1",
"nodemailer": "4.6.7",
"passport": "0.4.0",
"passport-local": "1.0.0",
"passport-local-mongoose": "5.0.1",
"pug": "2.0.3",
"slugs": "0.1.3",
"uuid": "3.3.2",
"validator": "10.4.0"
},
"devDependencies": {
"autoprefixer": "8.6.4",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"concurrently": "3.6.0",
"css-loader": "0.28.11",
"eslint": "5.0.1",
"eslint-plugin-react": "7.10.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"flow-bin": "0.75.0",
"node-sass": "4.9.2",
"nodemon": "1.17.5",
"now": "11.2.5",
"postcss-loader": "2.1.5",
"sass-loader": "7.0.3",
"webpack": "4.15.0",
"webpack-cli": "3.0.8"
}
}