-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 782 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 782 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
{
"name": "task-manager",
"version": "1.0.0",
"description": "A basic task manager api",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "env-cmd -f ./config/dev.env nodemon src/index.js",
"test": "env-cmd -f ./config/test.env jest --watch --runInBand"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "Akash Nai",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcryptjs": "^2.4.3",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.7.3",
"mongoose": "^5.13.14",
"multer": "^1.4.1",
"sharp": "^0.30.7",
"validator": "^10.9.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^23.6.0",
"nodemon": "^2.0.19"
}
}