-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 870 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
35
36
37
38
{
"name": "server_todo",
"version": "1.0.0",
"description": "server for my to do app",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "jest --runInBand --detectOpenHandles ./test"
},
"author": "Consuelo Sanna",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^3.0.0",
"config": "^3.2.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.2",
"mongoose": "^5.8.11",
"multer": "^1.4.2",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"jest": "^25.1.0",
"mongodb-memory-server": "^6.3.1",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}