-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "fit-app-api",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "tsx --watch src/index.ts",
"build": "pnpm exec prisma generate && tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --fix",
"vitest run --passWithNoTests"
],
"tests/**/*.spec.ts": [
"vitest run"
]
},
"keywords": [],
"author": "",
"engines": {
"node": "24.x"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"license": "ISC",
"packageManager": "pnpm@10.30.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "24",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "3.8.1",
"prisma": "7.4.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@ai-sdk/google": "^3.0.37",
"@fastify/cors": "11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "9.7.0",
"@prisma/adapter-pg": "7.4.0",
"@prisma/client": "7.4.0",
"@scalar/fastify-api-reference": "1.44.20",
"@sentry/node": "^10.43.0",
"ai": "6.0.100",
"better-auth": "1.4.18",
"dayjs": "^1.11.19",
"dotenv": "17.3.1",
"fastify": "5.7.4",
"fastify-type-provider-zod": "6.1.0",
"pino-pretty": "13.1.3",
"uploadthing": "^7.7.4",
"zod": "4.3.6"
}
}