-
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.74 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.74 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": "nextjs-template",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.9",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"cleanup:demo": "bun scripts/cleanup-demo.ts",
"sdk:sync": "rm -rf node_modules/@eazo/sdk && mkdir -p node_modules/@eazo/sdk && cp ../eazo-sdk/sdk/package.json node_modules/@eazo/sdk/ && cp -r ../eazo-sdk/sdk/dist node_modules/@eazo/sdk/dist && cp -R ../eazo-sdk/sdk/node_modules node_modules/@eazo/sdk/node_modules",
"sdk:dev": "(cd ../eazo-sdk/sdk && npm run build) && bun run sdk:sync",
"sdk:watch": "bun run scripts/sdk-watch.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun src/lib/db/migrate.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:drop": "drizzle-kit drop"
},
"dependencies": {
"@base-ui/react": "^1.4.0",
"@eazo/sdk": "0.22.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.38.0",
"i18next": "^25.8.14",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"next-themes": "^0.4.6",
"postgres": "^3.4.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^16.5.6",
"shadcn": "^4.3.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}