-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 986 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
43
{
"name": "task-manager-api",
"version": "1.0.0",
"description": "## Overview",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "mocha --recursive src/tests/*.test.js",
"lint": "eslint 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"uuid": "^10.0.0",
"winston": "^3.13.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"mocha": "^10.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"sinon": "^7.5.0",
"sinon-mongoose": "^2.3.0"
}
}