-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "api",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup src/index.ts --format esm --dts",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"generate:types": "openapi-typescript openapi/schema.yaml -o src/types/generated/api.d.ts"
},
"dependencies": {
"@prisma/client": "^6.19.2",
"better-auth": "^1.4.18",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.2.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"openapi-typescript": "^7.10.1",
"prisma": "^6.19.2",
"supertest": "^7.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}