-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 920 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 920 Bytes
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
{
"name": "mega-copy",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --port 3004",
"build": "next build",
"start": "next start --port 3004",
"lint": "next lint",
"backup:download": "node scripts/download-backup.js",
"backup:upload": "node scripts/backup-to-drive.js",
"backup:status": "node scripts/backup-to-drive.js --status"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"framer-motion": "^12.0.0",
"lucide-react": "^0.541.0",
"next": "14.2.18",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.0",
"typescript": "^5",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.55.0"
}
}