-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.32 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "production-grade-backend",
"version": "1.0.0",
"description": "Production grade backend repo, it is monolithic",
"main": "index.js",
"scripts": {
"dist": "npx tsc",
"dev": "nodemon src/server.ts",
"start": "npx tsc && node dist/server.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky",
"test": "jest",
"build": "tsc"
},
"keywords": [
"production",
"backend",
"deployment",
"scalable",
"futureproof",
"blogapp",
"microservices"
],
"author": "mayank tiwari",
"license": "ISC",
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run format:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.5",
"@types/source-map-support": "^0.5.10",
"axios": "^1.7.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.3.3",
"prisma": "^5.21.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"@types/extract-domain": "^2.3.3",
"@types/uuid": "^10.0.0",
"bcryptjs": "^2.4.3",
"bullmq": "^5.21.1",
"colorette": "^2.0.20",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"extract-domain": "^5.0.2",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.7.1",
"parse-domain": "^8.2.2",
"source-map-support": "^0.5.21",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"winston-mongodb": "^6.0.0",
"zod": "^3.23.8"
}
}