-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.11 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.11 KB
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
{
"name": "webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"check-types": "tsc -p tsconfig.json --noEmit",
"precommit": "lint-staged && pnpm check-types",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"dk-dev": "drizzle-kit --config=drizzle.dev.config.ts",
"dk-cf": "drizzle-kit --config=drizzle.cf.config.ts",
"gen-hooks": "tsx scripts/generate_api_hooks.ts && prettier --write \"src/apiHooks/**/*.{ts,tsx}\"",
"gen-routes": "tsx scripts/gen_route_helpers.ts && prettier --write src/helpers/client/routes.ts src/helpers/server/routes.ts",
"prepare": "husky"
},
"dependencies": {
"@clerk/nextjs": "^6.30.2",
"@dgreenheck/ez-tree": "^1.0.0",
"@google/genai": "^1.30.0",
"@lexical/link": "^0.34.0",
"@lexical/list": "^0.34.0",
"@lexical/react": "^0.34.0",
"@lexical/selection": "^0.34.0",
"@lexical/utils": "^0.34.0",
"@libsql/client": "^0.15.10",
"@next/bundle-analyzer": "^15.4.6",
"@opennextjs/cloudflare": "^1.10.1",
"@tanstack/react-query": "^5.84.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.4",
"drizzle-zod": "^0.8.2",
"jose": "^6.1.0",
"lexical": "^0.34.0",
"moment-timezone": "^0.6.0",
"next": "15.5.5",
"nextjs-toploader": "^3.9.17",
"openai": "^6.9.1",
"pg": "^8.16.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-timeago": "^8.3.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"server-only": "^0.0.1",
"tailwind-merge": "^3.3.1",
"three": "^0.181.0",
"unidecode": "^1.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@clerk/types": "^4.88.0",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.5.5",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^20",
"@types/pg": "^8.15.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.181.0",
"@types/unidecode": "^1.1.0",
"baseline-browser-mapping": "^2.10.0",
"daisyui": "^5.3.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9",
"eslint-config-next": "15.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^4.1.14",
"ts-morph": "^26.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.44.0",
"wrangler": "^4.50.0"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix --no-warn-ignored"
]
},
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
}