-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.23 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ExpressEs6",
"version": "5.1.1",
"description": "A MVC boilerplate for Node.js web applications",
"repository": {
"type": "git",
"url": ""
},
"author": "Muhammad Usama Mashkoor",
"license": "MIT",
"scripts": {
"postinstall": "npm rebuild node-sass",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p .",
"run": "node app.js",
"test": "jest",
"lint": "eslint \"**/*.js\"",
"client": "npm run start --prefix client"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"async": "^2.1.4",
"axios": "^0.19.2",
"bcrypt": "^5.0.1",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"clockwork": "^0.1.4",
"compression": "^1.7.3",
"connect-mongo": "^4.4.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"cryptr": "^6.0.2",
"dateformat": "latest",
"dotenv": "^16.0.1",
"errorhandler": "^1.5.0",
"express": "^4.17.1",
"express-autosanitizer": "^1.0.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"express-status-monitor": "^1.1.5",
"express-validator": "^6.14.1",
"ioredis": "^4.16.0",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.5",
"lastfm": "^0.9.2",
"lob": "^6.0.1",
"lodash": "latest",
"lusca": "^1.6.1",
"mailgun-js": "^0.22.0",
"method-override": "^3.0.0",
"moment": "latest",
"mongo-sanitize": "^1.1.0",
"mongodb-memory-server": "^8.6.0",
"mongoose": "^6.3.4",
"mongoose-sequence": "^5.0.1",
"morgan": "^1.10.0",
"multer": "^1.3.0",
"neat-csv": "^5.2.0",
"nocache": "^2.1.0",
"node-sass": "^4.14",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^6.4.10",
"nodemon": "^2.0.3",
"ora": "^5.0.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-openid": "^0.4.0",
"popper.js": "^1.14.4",
"pug": "^3.0.2",
"redis": "^3.0.2",
"request": "^2.88.0",
"restify": "^7.2.1",
"rotating-file-stream": "^2.1.1",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.3.0",
"sticky-session": "^1.1.2",
"tty": "^1.0.1",
"twit": "^2.2.11",
"underscore": "^1.8.3"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/express-status-monitor": "^1.3.0",
"@types/jest": "^27.5.1",
"@types/lusca": "^1.7.1",
"@types/method-override": "0.0.32",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.35",
"@types/node-sass-middleware": "0.0.32",
"@types/supertest": "^2.0.12",
"chai": "^4.1.2",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"jest": "^28.1.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"sinon": "^6.3.3",
"sinon-mongoose": "^2.2.1",
"supertest": "^3.4.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14.17.3",
"npm": ">=6.14.13"
}
}