-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 KB
/
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
41
42
{
"name": "task-app",
"version": "1.0.0",
"description": "",
"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 --watchAll --runInBand --detectOpenHandles --coverage"
},
"jest":{
"testEnvironment":"node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecatom/task-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ecatom/task-app/issues"
},
"homepage": "https://github.com/ecatom/task-app#readme",
"dependencies": {
"@sendgrid/mail": "^6.5.1",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.4.1",
"mongoose": "^5.8.7",
"multer": "^1.4.2",
"sharp": "^0.24.0",
"validator": "^12.1.0"
},
"devDependencies": {
"env-cmd": "^10.0.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}