-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 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
{
"name": "aurora",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"vercel-build": "prisma generate && yarn build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@prisma/client": "^6.2.1",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-slot": "^1.1.1",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.474.0",
"next": "15.4.10",
"prisma": "^6.2.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@eslint/eslintrc": "^3",
"@storybook/addon-a11y": "^10.2.7",
"@storybook/addon-docs": "^10.2.7",
"@storybook/addon-onboarding": "^10.2.7",
"@storybook/addon-themes": "^10.2.7",
"@storybook/addon-vitest": "^10.2.7",
"@storybook/nextjs-vite": "^10.2.7",
"@types/node": "^20.19.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "15.4.10",
"eslint-plugin-storybook": "^10.2.7",
"playwright": "^1.58.1",
"postcss": "^8",
"storybook": "^10.2.7",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}