-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.19 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
{
"name": "socratic-dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:cloudflare": "opennextjs-cloudflare build",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@anthropic-ai/sdk": "^0.99.0",
"@base-ui/react": "^1.5.0",
"@excalidraw/excalidraw": "^0.18.1",
"@monaco-editor/react": "^4.7.0",
"@opennextjs/cloudflare": "^1.20.2",
"@sentry/nextjs": "^10.63.0",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.106.2",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"motion": "^12.40.0",
"next": "16.2.12",
"posthog-js": "^1.396.5",
"react": "19.2.6",
"react-day-picker": "^10.0.1",
"react-dom": "19.2.6",
"recharts": "^3.8.1",
"stripe": "^22.3.0",
"sucrase": "^3.35.1",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^10.4.0",
"eslint-config-next": "^16.2.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vitest": "^4.1.10",
"wrangler": "^4.123.0"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}