-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 832 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 832 Bytes
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
{
"name": "NodeNoteApp",
"main": "server.js",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-session": "^1.3.3",
"ejs": "2.6.1",
"express": "4.16.4",
"express-session": "^1.16.1",
"helmet": "^3.17.0",
"mocha": "^6.1.4",
"mongodb-memory-server": "^5.1.2",
"mongoose": "^5.5.5",
"sendgrid": "^5.2.3",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0",
"uuid": "^3.3.2"
},
"scripts": {
"test": "mocha tests/ --exit --timeout 30000",
"//": [
"long timeout is due to installing the in memory mongo DB server, looking into a workaround",
"TODO: reduce the timeouts"
],
"start": "node server prod",
"dev": "node server dev"
},
"devDependencies": {}
}