-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 864 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 864 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
35
36
37
{
"name": "task-manager",
"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 --runInBand --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "milekag01",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.0.0",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"multer": "^1.4.2",
"sharp": "^0.25.2",
"validator": "^13.0.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"eslint": "^6.8.0",
"jest": "^25.2.7",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}