-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
168 lines (168 loc) · 5.3 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "enoflow",
"version": "0.1.0",
"private": true,
"description": "Rethinking Student Productivity",
"license": "AGPL-3.0-or-later",
"author": "caleb.",
"type": "module",
"scripts": {
"build": "next build",
"clean": "bun run rm -rf .next node_modules *.tsbuildinfo next-env.d.ts",
"commit": "git-cz",
"db:check": "drizzle-kit check",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:migrate:drop": "drizzle-kit migrate:drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:up": "drizzle-kit up",
"dev": "next dev",
"email:dev": "SKIP_ENV_VALIDATION=true email dev --port 3001 --dir src/emails/templates",
"format": "pnpm format:write",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"format:write": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint": "bun lint:js && bun lint:md && bun lint:spell",
"lint:js": "eslint . --max-warnings 0",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --ignore node_modules",
"lint:spell": "cspell \"**/*\" --no-summary --no-progress",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": [
"cspell --no-must-find-files",
"prettier --list-different"
],
"**/*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint"
],
"**/*.{md,mdx}": [
"markdownlint"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@clerk/nextjs": "^5.7.5",
"@clerk/themes": "^2.1.41",
"@hookform/resolvers": "^3.9.1",
"@neondatabase/serverless": "^0.9.5",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-checkbox": "^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-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@react-email/components": "^0.0.19",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.59.20",
"@trpc/client": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@types/color": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.3.2",
"@vercel/speed-insights": "^1.0.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"color": "^4.2.3",
"drizzle-orm": "^0.31.4",
"drizzle-zod": "^0.5.1",
"framer-motion": "^11.11.11",
"geist": "^1.3.1",
"jiti": "^2.4.0",
"lucide-react": "^0.390.0",
"next": "14.2.3",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-animate-height": "^3.2.3",
"react-dom": "^18.3.1",
"react-email": "^2.1.6",
"react-hook-form": "^7.53.1",
"resend": "^3.5.0",
"server-only": "^0.0.1",
"slugify": "^1.6.6",
"sonner": "^1.7.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.5.4",
"timeago.js": "^4.0.2",
"use-resize-observer": "^9.1.0",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@happy-dom/global-registrator": "^14.12.3",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@next/bundle-analyzer": "^14.2.17",
"@next/eslint-plugin-next": "^14.2.17",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.15",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.1.13",
"@types/eslint": "^8.56.12",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"commitizen": "^4.3.1",
"cspell": "^8.15.7",
"drizzle-kit": "^0.22.8",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.2.2",
"prettier-plugin-packagejson": "^2.5.3",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"trustedDependencies": [
"@clerk/shared",
"@swc/core",
"es5-ext",
"esbuild"
]
}