-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.6 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
{
"name": "trey",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "vitest run --passWithNoTests",
"lint": "next lint && biome lint ./",
"lint:fix": "biome lint --write ./",
"format": "biome format ./",
"format:fix": "biome format --write ./",
"check": "biome check ./",
"check:fix": "biome check --write ./",
"typecheck": "tsc --noEmit",
"validate": "bun run typecheck && bun run lint && bun run test",
"prepare": "husky",
"sync:test": "bun run scripts/test-sync.ts",
"discover": "bun run scripts/discover-libraries.ts",
"discover:dry": "bun run scripts/discover-libraries.ts --dry-run",
"generate:content": "bun run scripts/generate-content.ts",
"generate:playground": "bun run scripts/generate-playground.ts",
"test:ai": "bun run scripts/test-ai-generation.ts",
"test:ai:content": "bun run scripts/test-ai-generation.ts --content",
"test:ai:playground": "bun run scripts/test-ai-generation.ts --playground",
"reset:discovery": "bun run scripts/reset-discovery.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@codesandbox/sandpack-react": "^2.20.0",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.89.0",
"@tailwindcss/postcss": "^4.1.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^25.7.3",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-resources-to-backend": "^1.2.1",
"lucide-react": "^0.562.0",
"next": "^16.1.1",
"next-i18n-router": "^5.5.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.0",
"react-resizable-panels": "^4.6.3",
"shiki": "^3.20.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.0.6"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write"
],
"*.{json,css,md}": [
"biome format --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@netlify/plugin-nextjs": "^5.15.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.1.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.7.2",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0"
}
}