-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.88 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "enterprise-auth",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"test": "jest",
"migrate": "prisma migrate dev",
"seed": "ts-node prisma/seed.ts",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"dependencies": {
"@prisma/client": "^5.7.0",
"argon2": "^0.30.3",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.3",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"rate-limit-redis": "^4.3.1",
"redis": "^4.6.10",
"uuid": "^9.0.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.8.7",
"@types/supertest": "^2.0.16",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}