-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
43
44
45
46
47
{
"name": "taskapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": " nodemon -r dotenv/config index.js dotenv_config_path=./.env",
"test": "jest --watch --runInBand --setupFiles dotenv/config ./test.env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/longbuibao/taskApp.git"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/longbuibao/taskApp/issues"
},
"homepage": "https://github.com/longbuibao/taskApp#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"fuse.js": "^6.4.6",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.30",
"mongodb": "^3.6.6",
"mongoose": "^5.12.8",
"multer": "^1.4.2",
"nodemailer": "^6.6.1",
"sharp": "^0.28.3",
"validator": "^13.6.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}