-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 872 Bytes
/
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
{
"name": "ntalk",
"description": "Node talk - Agenda de contatos",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "SET DEBUG=* && node server",
"app": "SET DEBUG=* && node app.js >> app.log",
"test": "SET NODE_ENV=test && mocha tests/**/*.js --exit"
},
"dependencies": {
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"connect-redis": "^4.0.4",
"consign": "^0.1.6",
"cookie-parser": "~1.4.4",
"csurf": "^1.11.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.17.0",
"forever-monitor": "^2.0.0",
"http-errors": "~1.6.3",
"method-override": "^3.0.0",
"mongoose": "^5.9.7",
"redis": "^3.0.2",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.2.0"
},
"devDependencies": {
"mocha": "^7.1.1",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}