-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 761 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 761 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
33
34
35
36
37
{
"name": "exam",
"version": "1.0.0",
"description": "",
"main": "api.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"shortid": "^2.2.16",
"winston": "^3.11.0"
},
"devDependencies": {
"mongodb-memory-server": "^9.0.1",
"supertest": "^6.3.3"
}
}