-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "motioncode",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"check": "npm run typecheck && npm run lint && npm test && npm run build"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.0",
"@codemirror/view": "^6.43.4",
"@gsap/react": "^2.1.2",
"@lezer/highlight": "^1.2.3",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.107.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"framer-motion": "^12.35.1",
"gsap": "^3.14.2",
"lucide-react": "^0.577.0",
"next": "16.2.7",
"ogl": "^1.0.11",
"react": "^18",
"react-dom": "^18",
"react-resizable-panels": "2.1.9",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.9",
"@playwright/test": "^1.60.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.7",
"jsdom": "^29.1.1",
"postcss": "8.5.10",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^4.1.8"
},
"overrides": {
"postcss": "8.5.10"
}
}