This repository was archived by the owner on Apr 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.95 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.95 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
{
"name": "nitro-app",
"version": "0.7",
"scripts": {
"prepare": "nitro prepare",
"build": "nitro build",
"build:base": "bun run switch:base && bun run build",
"build:vercel": "bun run switch:vercel && bun run migrate && bun run build",
"build:cloudflare": "bun run switch:cloudflare && bun run migrate && bun run build",
"build:standalone": "bun run switch:standalone && bun run migrate && bun run build",
"build:debug": "bun run switch:debug && bun run build",
"switch:base": "rm nitro.config.ts && cp nitro.config-base.ts nitro.config.ts",
"switch:vercel": "rm nitro.config.ts && cp nitro.config-vercel.ts nitro.config.ts",
"switch:cloudflare": "rm nitro.config.ts && cp nitro.config-cloudflare.ts nitro.config.ts",
"switch:standalone": "rm nitro.config.ts && cp nitro.config-standalone.ts nitro.config.ts",
"switch:debug": "rm nitro.config.ts && cp nitro.config-debug.ts nitro.config.ts",
"migrate": "drizzle-kit migrate",
"dev": "nitro dev",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@testcontainers/postgresql": "^11.11.0",
"@testcontainers/valkey": "^11.11.0",
"@types/bcrypt": "^6.0.0",
"@types/clamp": "^1.0.3",
"@types/pg": "^8.16.0",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.9",
"h3": "^1.15.5",
"nitro-test-utils": "^0.11.2",
"nitropack": "^2.13.1",
"typescript": "^5.9.3",
"unplugin-auto-import": "^21.0.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@vercel/blob": "^2.2.0",
"@vercel/edge-config": "^1.4.3",
"aws4fetch": "^1.0.20",
"bcrypt": "^6.0.0",
"clamp": "^1.0.1",
"deep-equal": "^2.2.3",
"deep-object-diff": "^1.1.9",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"eventemitter3": "^5.0.4",
"pg": "^8.18.0",
"tinyrainbow": "^3.0.3",
"unctx": "^2.5.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
}
}