This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.6 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
{
"name": "t3-app-router-edge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "pnpm with-env prisma db push",
"db:studio": "pnpm with-env prisma studio",
"dev-migrate": "prisma migrate dev",
"postinstall": "prisma generate",
"with-env": "dotenv -e ../../../.env --"
},
"dependencies": {
"@auth/core": "0.5.1",
"@paralleldrive/cuid2": "^2.2.0",
"@planetscale/database": "^1.6.0",
"@prisma/client": "^4.8.0",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-hover-card": "^1.0.5",
"@radix-ui/react-label": "^2.0.1",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-separator": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.5",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/query-core": "4.14.5",
"@tanstack/react-query": "4.14.5",
"@tanstack/react-query-devtools": "4.14.5",
"@tanstack/react-table": "^8.7.9",
"@trpc/client": "10.0.0-rc.1",
"@trpc/react-query": "10.0.0-rc.1",
"@trpc/server": "10.0.0-rc.1",
"buffer": "^6.0.3",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cookie": "^0.5.0",
"date-fns": "^2.29.3",
"kysely": "0.21.6",
"kysely-planetscale": "^1.3.0",
"lucide-react": "^0.109.0",
"next": "^13.2.4",
"next-themes": "^0.2.1",
"prisma": "^4.8.0",
"react": "18.2.0",
"react-dom": "^18.2.0",
"set-cookie-parser": "^2.5.1",
"superjson": "^1.12.2",
"tailwind-merge": "^1.9.1",
"tailwindcss-animate": "^1.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/node": "18.8.5",
"@types/react": "18.0.21",
"@types/set-cookie-parser": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"dotenv-cli": "^6.0.0",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-only-warn": "^1.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.7",
"typescript": "4.8.4"
},
"pnpm": {
"patchedDependencies": {
"@tanstack/[email protected]": "patches/@[email protected]"
}
}
}