-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 KB
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
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles"
},
"keywords": [
"nodejs",
"express",
"rest-api",
"mongodb"
],
"author": "Juwono",
"license": "ISC",
"description": "REST API for User Management Application",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.2.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"helmet": "^8.0.0",
"install": "^0.13.0",
"jsdom": "^26.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.3",
"nanoid": "^5.1.5",
"nodemailer": "^6.9.14",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"supertest": "^7.0.0"
}
}