-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.41 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
{
"name": "codi-be",
"description": "Codi Backend",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts ",
"build": "prisma generate && tsc && tsc-alias && cpx \"src/**/*.{json,csv,txt}\" dist",
"start": "node dist/index.js",
"test": "jest",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --name test-migration",
"prisma:studio": "prisma studio",
"format": "prettier --write \"src/**/*.{ts,js}\" \"test/**/*.{ts,js}\"",
"format:check": "prettier --check \"src/**/*.{ts,js}\" \"test/**/*.{ts,js}\"",
"check": "pnpm run typecheck && pnpm run lint && pnpm run format:check",
"commitlint": "commitlint --from=HEAD~1 --to=HEAD",
"prepare": ""
},
"dependencies": {
"@auth/core": "^0.41.1",
"@auth/express": "^0.12.1",
"@google-cloud/vision": "^5.3.4",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"@qdrant/js-client-rest": "^1.15.1",
"@types/bcrypt": "^6.0.0",
"@types/body-parser": "^1.19.6",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.9.1",
"@types/pg": "^8.15.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cpx": "^1.5.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"fastest-levenshtein": "^1.0.16",
"google-auth-library": "^10.5.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"openai": "^6.7.0",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"prisma": "^7.0.0",
"prisma-zod-generator": "^1.30.2",
"sharp": "^0.34.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"husky": "^9.1.7",
"madge": "^8.0.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6"
},
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}