-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.49 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.49 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
{
"dependencies": {
"@better-auth/drizzle-adapter": "^1.6.11",
"@elysiajs/cors": "^1.4.2",
"@elysiajs/openapi": "^1.4.15",
"@neondatabase/serverless": "^1.1.0",
"@rsc-boundary/next": "^0.3.2",
"@varlock/bitwarden-plugin": "^1.0.0",
"babel-plugin-react-compiler": "^1.0.0",
"better-auth": "^1.6.11",
"drizzle-orm": "1.0.0-rc.2",
"elysia": "^1.4.28",
"next": "^16.2.6",
"nuqs": "^2.8.9",
"react": "19.3.0-canary-da9325b5-20260417",
"react-dom": "19.3.0-canary-da9325b5-20260417",
"react-icons": "^5.6.0",
"server-only": "^0.0.1",
"slugify": "^1.6.9",
"valibot": "^1.4.0",
"varlock": "1.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@happy-dom/global-registrator": "^20.9.0",
"@pandacss/dev": "^1.11.1",
"@playwright/test": "^1.60.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.14",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260522.1",
"@varlock/nextjs-integration": "^1.1.0",
"drizzle-kit": "1.0.0-rc.2",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"next-devtools-mcp": "^0.3.10",
"pandacss-preset-typography": "^0.1.6",
"react-doctor": "^0.2.1",
"typescript": "^6.0.3",
"typescript-plugin-directives": "^0.0.3",
"ultracite": "7.7.0"
},
"name": "3d-models",
"scripts": {
"dev": "bun --bun run next dev",
"dev:inspect": "bun --bun run next dev --inspect",
"next:upgrade": "bun --bun run next upgrade",
"next:analyze": "bun --bun run next experimental-analyze",
"build": "bun --bun run next build",
"build:debug": "bun --bun run next build --debug-prerender",
"start": "bun --bun run next start",
"test": "NODE_ENV=test bun test",
"test:watch": "NODE_ENV=test bun test --watch",
"test:unit": "NODE_ENV=test bun test tests/unit",
"test:components": "NODE_ENV=test bun test tests/components",
"test:integration": "NODE_ENV=test bun test tests/integration",
"test:e2e": "NODE_ENV=test playwright test",
"e2e:open": "NODE_ENV=test playwright test --ui",
"e2e:codegen": "NODE_ENV=test playwright codegen http://localhost:3000",
"typegen": "bun --bun run next typegen && tsgo --noEmit",
"env:typegen": "varlock typegen",
"db:generate": "varlock run -- bun x drizzle-kit generate",
"db:migrate": "varlock run -- bun x drizzle-kit migrate",
"db:push": "varlock run -- bun x drizzle-kit push --force",
"db:studio": "varlock run -- bun x drizzle-kit studio",
"db:seed": "varlock run -- bun --conditions=react-server src/db/seed.ts",
"db:drop": "varlock run -- bun --conditions=react-server src/db/drop-tables.ts",
"prepare": "panda codegen && husky",
"type": "tsgo --noEmit --skipLibCheck --project tsconfig.json",
"fix": "ultracite fix",
"check": "ultracite check",
"doctor": "ultracite doctor",
"ultracite:upgrade": "bun x ultracite@latest init --pm bun --linter biome --editors cursor --hooks cursor --frameworks next --quiet",
"react-doctor": "npx react-doctor@latest"
},
"type": "module",
"version": "0.1.0",
"private": true,
"trustedDependencies": [],
"overrides": {
"@next/env": "npm:@varlock/nextjs-integration",
"undici": ">=7.18.2",
"@modelcontextprotocol/sdk": ">=1.25.2",
"postcss": ">=8.5.10",
"fast-uri": ">3.1.1",
"ip-address": ">10.1.0",
"hono": ">=4.12.18",
"zod": "^4.3.6"
}
}