-
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.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 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": "api-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "prettier --write .",
"build": "tsc && tsc-alias",
"start": "node dist/server.js",
"dev": "nodemon --exec tsx src/server.ts",
"migrate:indexes": "tsx migrations/create-indexes.ts up",
"migrate:indexes:down": "tsx migrations/create-indexes.ts down"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@aws-sdk/client-ecs": "^3.901.0",
"@aws-sdk/client-s3": "^3.931.0",
"@clickhouse/client": "^1.12.1",
"@prisma/client": "^6.16.3",
"@types/cookie-parser": "^1.4.9",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.8.2",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"mongoose": "^8.19.0",
"morgan": "^1.10.1",
"nanoid": "^5.1.6",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"random-word-slugs": "^0.1.7",
"socket.io": "^4.8.1",
"stripe": "^20.0.0",
"uuid": "^13.0.0",
"winston": "^3.19.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/node": "^25.0.1",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.15.5",
"prettier": "^3.6.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
}
}