-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.27 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
{
"name": "pluto",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"pages:build": "NODE_OPTIONS=--no-deprecation npx opennextjs-cloudflare build",
"preview": "npx wrangler dev",
"deploy": "NODE_OPTIONS=--no-deprecation npm run pages:build && NODE_OPTIONS=--no-deprecation npx wrangler deploy",
"docker:build": "docker build -t fatesinger/pluto:latest .",
"docker:push": "docker push fatesinger/pluto:latest",
"docker:publish": "npm run docker:build && npm run docker:push",
"wrangler:sync-env": "node scripts/sync-wrangler-env.mjs",
"start": "next start",
"lint": "eslint",
"edgeone:deploy": "npx edgeone pages deploy -n photos",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@supabase/supabase-js": "^2.93.3",
"better-sqlite3": "^11.5.0",
"drizzle-orm": "^0.45.1",
"exifreader": "^4.36.1",
"jose": "^6.1.3",
"next": "^15.5.9",
"postgres": "^3.4.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"rss": "^1.2.2",
"sonner": "^2.0.7",
"tailwindcss-animate": "^1.0.7",
"ts-md5": "^2.0.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260131.0",
"@opennextjs/cloudflare": "^1.14.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.3",
"lucide-react": "^0.562.0",
"postcss": "^8.5.6",
"sass": "^1.97.2",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.19",
"typescript": "^5",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
}
}