-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
45
46
47
48
{
"name": "new-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"build": "tsc -b",
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node dist/lib/seed.js",
"seed-rbac": "node dist/lib/rbacSeed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.1.0",
"@types/bcrypt": "^6.0.0",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.96",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"crypto": "^1.0.1",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.2",
"nodemailer": "^7.0.6",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/nodemailer": "^7.0.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.1",
"nodemon": "^3.1.10",
"typescript": "^5.9.2"
}
}