-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 760 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 760 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
{
"name": "comptracker_service",
"version": "1.0.0",
"description": "Backend service for the comptracker application",
"main": "app.js",
"scripts": {
"test": "jest --runInBand --detectOpenHandles",
"dev": "nodemon app.js"
},
"author": "Markus Jäntti",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"mongodb": "^5.9.2",
"mongoose": "^7.6.10"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"mongodb-memory-server": "^8.16.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
}
}