-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 938 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
{
"name": "task-manager-api",
"version": "1.0.0",
"main": "src/app.js",
"type": "module",
"scripts": {
"start": "nodemon src/app.js",
"test": "NODE_ENV=test mocha tests/**/*.test.js"
},
"keywords": [],
"author": "Marcin Płaza",
"license": "ISC",
"description": "Task Manager API built with Node.js and Express.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"csurf": "^1.10.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.1",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.15",
"sinon": "^18.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
}
}