forked from Ahmed-Abdelhafez/task-manger-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 793 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
{
"name": "task-manger",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "env-cmd ./config/dev.env nodemon src/index.js",
"test": "env-cmd ./config/test.env jest --watch --runInBand"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcryptjs": "^2.4.3",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.6.2",
"mongoose": "^5.10.8",
"multer": "^1.4.1",
"sharp": "^0.26.2",
"ts-jest": "^26.4.3",
"validator": "^10.9.0"
},
"devDependencies": {
"env-cmd": "^8.0.2",
"jest": "^23.6.0",
"nodemon": "^1.18.9",
"supertest": "^3.4.1"
}
}