-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 962 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
36
37
38
39
40
41
42
{
"name": "Task-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"test": "env-cmd -f ./config/test.env jest --watchAll --runInBand"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.6.0",
"base64-arraybuffer": "^1.0.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"ejs": "^3.1.7",
"express": "^4.17.2",
"hbs": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"mongoose": "^6.4.6",
"multer": "^1.4.4",
"partials": "^0.1.0",
"path": "^0.12.7",
"sharp": "^0.29.3",
"validator": "^13.7.0"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
}
}