-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.98 KB
/
package.json
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "bug-tracker",
"version": "0.1.0",
"private": true,
"type": "module",
"module": "index.ts",
"scripts": {
"build": "zenstack generate && next build",
"dev": "next dev --turbo",
"dev:debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"lint": "pnpm eslint && next lint",
"seed": "prisma db seed",
"start": "next start",
"db:setup:test": "prisma db push --schema=prisma/schema.prisma",
"db:teardown:test": "prisma db drop --force --preview-feature",
"test:e2e": "playwright test --headed",
"test": "vitest"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@faker-js/faker": "^8.4.1",
"@headlessui/react": "^2.1.1",
"@heroicons/react": "^2.1.4",
"@hookform/resolvers": "^3.6.0",
"@lexical/markdown": "^0.16.1",
"@lexical/react": "^0.16.1",
"@prisma/client": "^5.18.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.1",
"@supabase/ssr": "^0.5.0",
"@supabase/supabase-js": "^2.45.1",
"@t3-oss/env-nextjs": "^0.11.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-table": "^8.17.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@uidotdev/usehooks": "^2.4.1",
"@uiw/react-color": "^2.3.0",
"@uiw/react-color-block": "^2.3.0",
"@uiw/react-color-circle": "^2.3.0",
"@zenstackhq/runtime": "^2.4.1",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.2.11",
"lexical": "^0.16.1",
"lucide-react": "^0.396.0",
"luxon": "^3.4.4",
"next": "^14.2.5",
"next-safe-action": "^7.1.0",
"next-themes": "^0.3.0",
"nuqs": "^1.17.8",
"radash": "^12.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.0",
"react-merge-refs": "^2.1.1",
"server-only": "^0.0.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.46.0",
"@tanstack/eslint-plugin-query": "^5.43.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/bun": "latest",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vercel/style-guide": "^6.0.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.1.1",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.4",
"ts-node": "^10.9.2",
"tsx": "^4.15.7",
"typescript": "5.4.5",
"use-debounce": "^10.0.2",
"vitest": "^2.0.5",
"zenstack": "^2.4.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}