-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
121 lines (121 loc) · 2.98 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "abeg-help-project",
"version": "1.0.0",
"description": "Abeg help project",
"main": "index.js",
"scripts": {
"pre-commit": "lint-staged",
"prepare": "husky install",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register build/server.js",
"start-prod": "node build/server.js",
"build": "tsc",
"dev": "nodemon",
"watch": "tsc --watch & nodemon build/index.js",
"lint": "npx eslint src/",
"format": "npx prettier --write .",
"check-types": "tsc --noEmit --pretty --skipLibCheck --incremental --project tsconfig.json --strict"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"lint-staged": {
"*.{js,ts}": [
"npm run format",
"npm run lint"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.514.0",
"@bull-board/api": "^5.9.1",
"@bull-board/express": "^5.9.1",
"@faker-js/faker": "^8.4.1",
"@google/generative-ai": "^0.2.1",
"@types/luxon": "^3.3.4",
"@types/multer": "^1.4.11",
"axios": "^1.6.7",
"bad-words": "^3.0.4",
"bcryptjs": "^2.4.3",
"blurhash": "^2.0.5",
"body-parser": "^1.20.2",
"bullmq": "^5.1.3",
"compression": "^1.7.4",
"connect-timeout": "^1.9.0",
"cookie": "^0.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"express-ipfilter": "^1.3.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.3",
"google-libphonenumber": "^3.2.33",
"helmet": "^7.0.0",
"helmet-csp": "^3.4.0",
"hi-base32": "^0.5.1",
"hpp": "^0.2.3",
"i": "^0.3.7",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.4.3",
"module-alias": "^2.2.3",
"mongoose": "^8.0.0",
"mongoose-autopopulate": "^1.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.7",
"natural": "^6.10.4",
"npm": "^10.2.4",
"openai": "^4.28.4",
"otpauth": "^9.2.0",
"qrcode": "^1.5.3",
"qs": "^6.11.2",
"resend": "^1.1.0",
"sharp": "^0.33.2",
"socket.io": "^4.7.2",
"ts-custom-error": "^3.3.1",
"tsconfig-paths": "^3.14.1",
"winston": "^3.10.0",
"xss-clean": "^0.1.4",
"zod": "^3.22.4"
},
"resolutions": {
"cookie": "0.6.0"
},
"devDependencies": {
"@types/bad-words": "^3.0.3",
"@types/bcryptjs": "^2.4.5",
"@types/connect-timeout": "^0.0.37",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/hpp": "^0.2.3",
"@types/jsonwebtoken": "^9.0.4",
"@types/morgan": "^1.9.6",
"@types/qrcode": "^1.5.5",
"@types/redis-info": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"concurrently": "^8.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nanoid": "^3.3.7",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.11.0"
},
"_moduleAliases": {
"@": "./build"
}
}