-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 775 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 775 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
{
"name": "task-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "env-cmd -f ./config/test.env jest --watch --runInBand",
"dev": "env-cmd -f ./config/dev.env nodemon src/index.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mailgun-js": "^0.22.0",
"mongodb": "^5.6.0",
"mongodb-legacy": "^5.0.0",
"mongoose": "^7.2.4",
"multer": "^1.4.5-lts.1",
"sharp": "^0.32.1",
"validator": "^13.9.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^29.6.1",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
}
}