-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
92 lines (92 loc) · 2.84 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
{
"name": "next-app-starter",
"version": "0.3.0",
"private": true,
"scripts": {
"build": "prisma generate && next build",
"build-storybook": "storybook build",
"check": "biome check --apply .",
"coverage": "vitest run --coverage",
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"lint": "biome lint --apply .",
"start": "next start",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit"
},
"babel": {
"presets": [
"next/babel"
]
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"@hookform/devtools": "4.3.1",
"@hookform/resolvers": "3.9.1",
"@next-auth/prisma-adapter": "1.0.7",
"@prisma/client": "5.22.0",
"@radix-ui/react-icons": "1.3.2",
"@radix-ui/react-slot": "1.1.0",
"@tailwindcss/forms": "0.5.9",
"@tanstack/react-query": "5.61.4",
"@tanstack/react-query-devtools": "5.61.4",
"@typeschema/zod": "0.14.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"consola": "3.2.3",
"jotai": "2.10.3",
"loglevel": "1.9.2",
"lucide-react": "0.461.0",
"next": "15.0.3",
"next-auth": "4.24.10",
"next-secure-headers": "2.2.0",
"next-validations": "1.0.3",
"nodemailer": "6.9.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.2",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"zod": "3.23.8"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@biomejs/biome": "1.9.4",
"@storybook/addon-essentials": "8.4.5",
"@storybook/addon-interactions": "8.4.5",
"@storybook/addon-links": "8.4.5",
"@storybook/nextjs": "8.4.5",
"@storybook/react": "8.4.5",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/react": "18.3.12",
"@vitejs/plugin-react": "4.3.4",
"@vitest/ui": "2.1.6",
"autoprefixer": "10.4.20",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"c8": "10.1.2",
"concurrently": "9.1.0",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"jest-fetch-mock": "3.0.3",
"jsdom": "25.0.1",
"msw": "1.3.5",
"postcss": "8.4.49",
"prisma": "5.22.0",
"rustywind": "0.23.1",
"sort-package-json": "2.12.0",
"storybook": "8.4.5",
"tailwindcss": "3.4.15",
"typescript": "5.7.2",
"vite": "5.4.11",
"vitest": "2.1.6"
},
"msw": {
"workerDirectory": "public"
}
}