-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.72 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
{
"name": "api",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"**/*.{ts,sh}\" Dockerfile",
"dev": "NEST_DEBUG=true nest start --watch",
"health-check": "wait-on http://localhost:3000/health && echo 'API is ready!'",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=production node dist/main.js",
"generate": "npx drizzle-kit generate",
"migrate": "npx drizzle-kit migrate",
"studio": "drizzle-kit studio",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts"
},
"dependencies": {
"@nestjs/common": "^11.1.13",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.13",
"@nestjs/jwt": "^11.0.2",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/platform-express": "^11.1.13",
"@nestjs/throttler": "^6.5.0",
"@repo/common": "*",
"@trpc-limiter/memory": "^1.0.0",
"@trpc/server": "^11.7.2",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.44.7",
"google-auth-library": "^10.5.0",
"pg": "^8.18.0",
"reflect-metadata": "^0.2.2",
"resend": "^6.9.1",
"superjson": "^2.2.6",
"ulid": "^3.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@golevelup/ts-vitest": "^4.0.0",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.13",
"@swc/core": "^1.15.11",
"@testing-library/jest-dom": "^6.9.1",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/node": "^24.10.11",
"@types/pg": "^8.16.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"prettier": "^3.8.3",
"prettier-plugin-sh": "^0.18.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vitest": "^4.1.5",
"vitest-browser-react": "^2.2.0"
}
}