-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.69 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.69 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "noteoverflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:file": "eslint --format html > debug/lint.html 2>&1",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"type-check:file": "node scripts/tsc-to-html.mjs",
"check": "npm run type-check && npm run lint",
"check:file": "npm run type-check:file && npm run lint:file",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy -- --keep-vars --minify",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload -- --keep-vars --minify",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.997.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@elysiajs/eden": "^1.4.8",
"@opennextjs/cloudflare": "^1.17.1",
"@pdftron/webviewer": "^11.11.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-pdf/renderer": "^4.3.2",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.19",
"better-auth": "^1.4.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"desmos": "^1.5.4",
"docx": "^9.6.0",
"drizzle-orm": "^0.45.1",
"elysia": "^1.4.25",
"gsap": "^3.14.2",
"idb": "^8.0.3",
"lucide-react": "^0.575.0",
"motion": "^12.34.3",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.9.17",
"pdf-lib": "^1.17.1",
"posthog-js": "^1.353.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-photo-view": "^1.2.7",
"react-resizable-panels": "^4.6.5",
"react-rnd": "^10.5.2",
"sonner": "^2.0.5",
"tailwind-merge": "^3.5.0",
"three": "^0.182.0",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20.19.30",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"ansi-to-html": "^0.7.2",
"drizzle-kit": "^0.31.1",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"wrangler": "^4.61.1"
}
}