-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.11 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:devin": "tsx scripts/test-devin-session.ts",
"ideate": "tsx scripts/ideate.ts",
"ideate:persist": "tsx scripts/ideate-persist.ts"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.8",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-slot": "^1.2.3",
"@react-icons/all-files": "^4.1.0",
"@react-three/fiber": "^9.3.0",
"@react-three/postprocessing": "^3.0.4",
"@vercel/analytics": "^1.5.0",
"ai": "^5.0.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.1",
"gray-matter": "^4.0.3",
"gsap": "^3.13.0",
"js-yaml": "^4.1.0",
"lucide-react": "^0.539.0",
"next": "15.4.6",
"next-mdx-remote-client": "^2.1.3",
"ogl": "^1.0.11",
"p-queue": "^8.0.1",
"postprocessing": "^6.37.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.3.1",
"three": "^0.167.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.179.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"tw-animate-css": "^1.3.6",
"typescript": "^5",
"vitest": "^2.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 160,
"tabWidth": 2,
"semi": false,
"jsxSingleQuote": true
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}