-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.33 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.33 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
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
{
"name": "@aido/api",
"version": "1.0.0",
"private": true,
"description": "Aido API Server",
"license": "MIT",
"author": "dydals3440",
"scripts": {
"build": "nest build",
"clean": "rm -rf dist coverage *.tsbuildinfo",
"db:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio --config ./prisma.config.ts",
"dev": "nest start --watch",
"format": "biome format --write src/",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"start": "nest start",
"start:prod": "NODE_ENV=production node dist/main",
"test": "jest",
"test:cov": "jest --coverage",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:integration": "jest --config ./test/jest-integration.json",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/google": "^3.0.29",
"@aido/errors": "workspace:*",
"@aido/utils": "workspace:*",
"@aido/validators": "workspace:*",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "^11.1.13",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.13",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.13",
"@nestjs/swagger": "^11.2.6",
"@nestjs/terminus": "^11.0.0",
"@nestjs/throttler": "^6.5.0",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"@sentry/nestjs": "^10.39.0",
"ai": "^6.0.86",
"argon2": "^0.44.0",
"bullmq": "^5.70.1",
"dayjs": "catalog:",
"es-hangul": "^2.3.8",
"expo-server-sdk": "^5.0.0",
"google-auth-library": "^10.0.0",
"helmet": "^8.1.0",
"ioredis": "^5.10.0",
"jose": "^6.1.3",
"nestjs-pino": "^4.5.0",
"nestjs-zod": "^5.1.1",
"passport": "^0.7.0",
"passport-apple": "^2.0.2",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-kakao": "^1.0.1",
"passport-local": "^1.0.0",
"passport-naver-v2": "^2.0.8",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"reflect-metadata": "^0.2.2",
"resend": "^6.9.2",
"rxjs": "^7.8.1",
"swagger-ui-express": "^5.0.1",
"zod": "catalog:"
},
"devDependencies": {
"@aido/jest-config": "workspace:*",
"@aido/typescript-config": "workspace:*",
"@golevelup/ts-jest": "^1.2.1",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.1.13",
"@suites/di.nestjs": "^3.0.1",
"@suites/doubles.jest": "^3.0.1",
"@suites/unit": "^3.0.1",
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.11",
"@swc/jest": "^0.2.39",
"@testcontainers/postgresql": "^10.13.2",
"@types/express": "^5.0.6",
"@types/ioredis-mock": "^8.2.6",
"@types/jest": "catalog:",
"@types/node": "catalog:",
"@types/passport-apple": "^2.0.3",
"@types/passport-google-oauth20": "^2.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-kakao": "^1.0.3",
"@types/passport-local": "^1.0.38",
"@types/passport-oauth2": "^1.8.0",
"@types/supertest": "^6.0.2",
"ioredis-mock": "^8.13.1",
"jest": "catalog:",
"jest-mock-extended": "^4.0.0",
"prisma": "^7.4.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"testcontainers": "^10.13.2",
"ts-jest": "catalog:",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "catalog:"
}
}