-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
75 lines (75 loc) · 2.08 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
{
"name": "nodejs-express-mongoose-demo",
"description": "A demo app illustrating the usage of express, mongoose, passportjs, pug and other modules in nodejs",
"keywords": [
"express",
"mongoose",
"mongodb",
"passport",
"demo",
"docker"
],
"version": "4.0.0",
"private": false,
"author": "Madhusudhan Srinivasa <madhums8@gmail.com> (http://madhums.github.com)",
"repository": {
"type": "git",
"url": "https://github.com/madhums/node-express-mongoose-demo.git"
},
"license": "MIT",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon server.js",
"debug": "cross-env NODE_ENV=development nodemon --debug server.js",
"test": "cross-env NODE_ENV=test babel-tape-runner test/test-*.js",
"prod": "pm2-runtime start ecosystem.config.js --env production"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "~1.19.0",
"co": "~4.6.0",
"compression": "~1.7.4",
"connect-flash": "~0.1.1",
"connect-mongo": "~4.6.0",
"cookie-parser": "~1.4.5",
"cors": "~2.8.5",
"cross-env": "~7.0.3",
"csurf": "~1.11.0",
"dotenv": "~10.0.0",
"express": "~4.19.2",
"express-session": "~1.17.2",
"helmet": "~4.6.0",
"method-override": "~3.0.0",
"mongoose": "~5.13.20",
"morgan": "~1.10.0",
"multer": "~1.4.2",
"notifier": "^0.2.0",
"only": "0.0.2",
"passport": "~0.4.1",
"passport-github": "~1.1.0",
"passport-google-oauth": "~2.0.0",
"passport-linkedin": "~1.0.0",
"passport-local": "~1.0.0",
"passport-twitter": "^0.1.5",
"pm2": "~5.3.1",
"pug": "~3.0.2",
"ultimate-pagination": "~1.0.0",
"view-helpers": "~0.2.0",
"winston": "~3.3.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.8",
"babel-eslint": "~10.1.0",
"babel-tape-runner": "~3.0.0",
"eslint": "~7.31.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-prettier": "~3.4.0",
"nodemon": "2.0.20",
"npm-check-updates": "~16.6.3",
"prettier": "~2.3.2",
"supertest": "*",
"tape": "~5.2.2"
}
}