-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.21 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
{
"name": "arc_prompt",
"version": "0.1.0",
"private": true,
"description": "Arc Prompt is a multi-model prompt management system.",
"homepage": "https://github.com/ai2codex/arc_prompt",
"repository": {
"type": "git",
"url": "https://github.com/ai2codex/arc_prompt"
},
"license": "MIT",
"author": "Arc Prompt",
"scripts": {
"build": "next build",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:generate:auth": "pnpm dlx @better-auth/cli generate --config ./lib/auth.ts --output ./db/schema/auth.ts",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"db:studio": "drizzle-kit studio --config drizzle.config.ts",
"dev": "next dev",
"fmt": "prettier --write .",
"gen:env": "cp .env.example .env",
"lint": "eslint",
"start": "next start"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.4",
"@vercel/analytics": "^1.6.1",
"better-auth": "^1.4.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"embla-carousel-react": "^8.6.0",
"input-otp": "^1.4.2",
"ky": "^1.14.2",
"next": "16.1.1",
"next-themes": "^0.4.6",
"postgres": "^3.4.7",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "19.2.3",
"react-resizable-panels": "^4.0.15",
"recharts": "2.15.4",
"shadcn": "^3.6.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.20",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4",
"typescript": "^5"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=22.0.0"
}
}