-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.59 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
{
"name": "studio",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "[email protected]+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754",
"scripts": {
"dev": "./scripts/dev.sh",
"build": "next build",
"postinstall": "prisma generate",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "SKIP_ENV_VALIDATION=true next lint",
"db:push": "prisma db push --force-reset && prisma db seed",
"db:studio": "prisma studio",
"knip": "SKIP_ENV_VALIDATION=true knip",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.4",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@node-rs/argon2": "^1.8.3",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-direction": "^1.1.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-popper": "^1.2.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@t3-oss/env-nextjs": "^0.11.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@types/rtl-detect": "^1.0.3",
"@types/validator": "^13.12.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@upstash/ratelimit": "^2.0.3",
"@vercel/analytics": "^1.3.1",
"@vercel/kv": "^2.0.0",
"clsx": "^2.1.1",
"eslint-config-prettier": "^9.1.0",
"framer-motion": "12.0.0-alpha.1",
"knip": "^5.30.2",
"lucia": "^3.2.0",
"lucide-react": "^0.394.0",
"nanoid": "^5.0.7",
"negotiator": "^0.6.3",
"next": "15.0.0-canary.160",
"next-intl": "^3.19.1",
"next-themes": "^0.3.0",
"nextjs-routes": "2.2.2-rc.4",
"ohash": "^1.1.4",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "19.0.0-rc-e740d4b1-20240919",
"react-dom": "19.0.0-rc-e740d4b1-20240919",
"rtl-detect": "^1.1.2",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwind-variants": "^0.2.1",
"type-fest": "^4.26.1",
"validator": "^13.12.0",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@prisma/client": "^5.19.1",
"@storybook/addon-a11y": "^8.3.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/addon-themes": "^8.3.0",
"@storybook/addon-viewport": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/nextjs": "^8.3.0",
"@storybook/react": "^8.3.0",
"@storybook/test": "^8.3.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/negotiator": "^0.6.3",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "15.0.0-canary.160",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-storybook": "^0.8.0",
"postcss": "8.4.38",
"prisma": "^5.19.1",
"storybook": "^8.3.0",
"tailwindcss": "^3.4.11",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"prisma": {
"schema": "lib/db/schema.prisma",
"seed": "tsx lib/db/seed.ts"
},
"pnpm": {
"patchedDependencies": {
"@radix-ui/[email protected]": "patches/@[email protected]"
}
}
}