-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
121 lines (121 loc) · 3.9 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
111
112
113
114
115
116
117
118
119
120
121
{
"name": "infinitunes",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"preview": "next build && next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"fmt": "prettier --write \"**/*.{ts,tsx,mdx,json}\" --cache",
"fmt:check": "prettier --check \"**/*.{ts,tsx,mdx,json}\" --cache",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun src/lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit introspect",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check",
"ui": "bunx shadcn",
"clean": "rm -rf .next",
"cleani": "rm -rf .next && rm -rf node_modules && bun i",
"prepare": "husky"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.0",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-query": "^5.59.13",
"@upstash/ratelimit": "^2.0.3",
"@upstash/redis": "^1.34.3",
"babel-plugin-react-compiler": "^0.0.0-experimental-ad3b12a-20241011",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cookies-next": "^5.0.2",
"drizzle-orm": "^0.34.1",
"geist": "^1.3.1",
"jotai": "^2.10.0",
"lucide-react": "^0.452.0",
"next": "^15.0.4-canary.4",
"next-auth": "^5.0.0-beta.22",
"next-themes": "^0.3.0",
"postgres": "^3.4.4",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-hook-form": "^7.53.0",
"react-use-audio-player": "^2.2.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.3",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@next/bundle-analyzer": "15.0.3",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/node": "22.7.5",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "10.4.20",
"drizzle-kit": "^0.25.0",
"eslint": "9.14.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-45ae4c3-20241011",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pg": "^8.13.0",
"postcss": "8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sharp": "^0.33.5",
"tailwindcss": "3.4.13",
"typescript": "5.6.3"
},
"lint-staged": {
"*.{ts,tsx,md,mdx}": [
"prettier --write \"**/*.{ts,tsx,mdx}\" --cache"
],
"*.{ts,tsx,mdx}": [
"eslint --fix ."
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}