-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.15 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "rest-api-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --ext ts",
"build": "tsc -p .",
"start:prod": "yarn build && node dist/index.js",
"format": "prettier --write src",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=18",
"yarn": "3.4.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/compression": "^1.7.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-status-monitor": "^1.3.3",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.6.1",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^3.0.13",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"colorette": "^2.0.20",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"winston": "^3.14.2"
},
"dependencies": {
"@types/ws": "^8.5.10",
"body-parser": "^1.20.2",
"bullmq": "^5.1.9",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.5",
"express-status-monitor": "^1.3.4",
"http-status-codes": "^2.3.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"nodemon": "^3.0.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"rate-limit-redis": "^4.2.0",
"ws": "^8.17.1",
"zod": "^3.22.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
},
"packageManager": "yarn@4.4.1"
}