-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "plainly-render-and-webhook",
"version": "0.1.0",
"private": true,
"scripts": {
"db:start": "docker compose up -d db",
"db:stop": "docker compose down",
"db:remove": "docker compose down -v",
"dev": "next dev",
"tunnel": "tsx scripts/start-with-tunnel.ts",
"dev:full": "pnpm db:start && pnpm prisma:generate && pnpm prisma:push && NODE_ENV=development pnpm tunnel",
"build": "pnpm prisma:generate && next build",
"start": "next start",
"start:full": "pnpm db:start && pnpm prisma:generate && pnpm prisma:push && NODE_ENV=production pnpm tunnel",
"lint": "biome check",
"lint:fix": "biome lint --write",
"format": "biome format --write",
"prisma:studio": "dotenv -e .env.local --- npx prisma studio",
"prisma:generate": "dotenv -e .env.local -- npx prisma generate",
"prisma:push": "dotenv -e .env.local -- npx prisma db push"
},
"dependencies": {
"@next/env": "16.1.6",
"@prisma/client": "^6.14.0",
"@prisma/extension-accelerate": "^2.0.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dotenv-cli": "^10.0.0",
"localtunnel": "^2.0.2",
"lucide-react": "^0.541.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/localtunnel": "^2.0.4",
"@types/node": "^20",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"prisma": "^6.14.0",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"axios": "1.12.0"
}
}
}