-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.7 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.7 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
81
82
83
84
85
86
{
"name": "jules-task-queue",
"version": "0.1.0",
"private": false,
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"dev": "prisma generate && next dev --turbopack",
"build": "prisma generate && next build",
"build:selfhosted": "prisma generate && SKIP_ENV_VALIDATION=true next build",
"start": "prisma migrate deploy && next start",
"lint": "prisma generate && next lint",
"format": "prettier --write .",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy",
"db:reset": "prisma migrate reset",
"db:studio": "prisma studio",
"type-check": "tsc --noEmit",
"cron:run": "./scripts/cron-run.sh",
"ngrok": "ngrok http 3000",
"tree": "tree -f -I \".next|node_modules|migrations\" -L 3"
},
"dependencies": {
"@icons-pack/react-simple-icons": "^13.3.0",
"@octokit/app": "^16.0.1",
"@octokit/auth-app": "^8.0.1",
"@octokit/rest": "^22.0.0",
"@octokit/webhooks": "^14.1.0",
"@octokit/webhooks-types": "^7.6.1",
"@prisma/client": "^6.10.1",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.81.5",
"@trpc/client": "^11.4.3",
"@trpc/next": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.525.0",
"next": "15.3.6",
"next-themes": "^0.4.6",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sonner": "^2.0.6",
"superjson": "^2.2.2",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.0.7",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.0",
"eslint-config-next": "15.3.6",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"prettier": "3.6.2",
"prisma": "^6.10.1",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}