-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.85 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
{
"name": "my-next-template",
"license": "MIT",
"scripts": {
"build": "pnpm prisma:generate && next build",
"check": "biome check .",
"check:write": "biome check --write .",
"dev": "next dev",
"prepare": "git config core.hooksPath .githooks",
"prisma:generate": "prisma generate",
"prisma:push": "prisma db push",
"sb": "storybook dev -p 6006",
"sb:build": "storybook build",
"start": "next start",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/client": "5.21.1",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-tooltip": "1.1.3",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"lucide-react": "0.454.0",
"next": "15.0.2",
"next-intl": "3.24.0",
"next-themes": "0.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "2.5.4",
"tailwindcss-animate": "1.0.7",
"valibot": "0.42.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@storybook/addon-essentials": "8.4.1",
"@storybook/addon-interactions": "8.4.1",
"@storybook/addon-links": "8.4.1",
"@storybook/blocks": "8.4.1",
"@storybook/nextjs": "8.4.1",
"@storybook/react": "8.4.1",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/node": "22.8.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.3",
"autoprefixer": "10.4.20",
"jsdom": "25.0.1",
"postcss": "8.4.47",
"prisma": "5.21.1",
"storybook": "8.4.1",
"tailwindcss": "3.4.14",
"typescript": "5.6.3",
"vitest": "2.1.4"
},
"packageManager": "[email protected]"
}