-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "node-playground",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">= 7.6.0"
},
"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"
},
"browserslist": "last 3 versions",
"dependencies": {
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"connect-flash": "0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "1.4.3",
"dompurify": "^2.0.17",
"dotenv": "4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-validator": "3.1.2",
"faker": "4.1.0",
"glob": "7.1.1",
"html-to-text": "3.2.0",
"jimp": "0.2.27",
"juice": "^6.0.0",
"md5": "2.2.1",
"moment": "^2.29.2",
"mongoose": "^5.9.4",
"mongoose-mongodb-errors": "0.0.2",
"multer": "1.3.0",
"nodemailer": "^6.6.1",
"passport": "0.3.2",
"passport-local": "1.0.0",
"passport-local-mongoose": "^5.0.1",
"pug": "^2.0.4",
"slugs": "0.1.3",
"uuid": "3.0.1",
"validator": "13.7.0"
},
"devDependencies": {
"autoprefixer": "6.7.7",
"babel-core": "6.24.0",
"babel-loader": "6.4.0",
"babel-preset-env": "^1.6.0",
"concurrently": "3.4.0",
"css-loader": "^3.4.2",
"extract-text-webpack-plugin": "2.1.0",
"node-sass": "^7.0.0",
"nodemon": "^2.0.2",
"postcss-loader": "1.3.3",
"sass-loader": "6.0.3",
"webpack": "^4.42.0"
}
}