-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1010 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
39
40
{
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"healthcheck": "^0.1.3",
"json-server": "^0.17.0",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^8.9.0",
"mongoose": "^6.5.2"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.0",
"jest": "^28.1.3",
"jest-runner-groups": "^2.2.0",
"nodemon": "^2.0.19"
},
"scripts": {
"start": "node server.js",
"json:server": "json-server --watch db.json",
"test": "jest"
},
"name": "gruppsarbete-backend",
"description": "Fake rest api for testing",
"version": "1.0.0",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sararazm/gruppsarbete-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sararazm/gruppsarbete-backend/issues"
},
"homepage": "https://github.com/sararazm/gruppsarbete-backend#readme",
"jest": {
"preset": "@shelf/jest-mongodb"
}
}