-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.69 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "mouse.rip",
"version": "3.0.0",
"private": true,
"scripts": {
"add-item": "bun ./scripts/add-item.js",
"build": "next build",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"cf:build": "opennextjs-cloudflare build",
"cf:deploy": "opennextjs-cloudflare deploy",
"dev": "next dev --turbopack",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"lint": "next lint",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"start": "next start",
"update": "concurrently \"bun run update:*\"",
"update:data": "bun ./scripts/update-data.js",
"update:images": "concurrently \"bun run update:images:mice\" \"bun run update:images:items\"",
"update:images:mice": "bun ./scripts/update-mice-images.js",
"update:images:items": "bun ./scripts/update-item-images.js",
"update:userscripts": "bun ./scripts/update-userscript-data.js"
},
"dependencies": {
"@headlessui/react": "^2.2.10",
"@heroicons/react": "^2.2.0",
"@opennextjs/cloudflare": "^1.19.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"next": "15.5.15",
"postcss": "^8.5.10",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-virtualized-auto-sizer": "^1.0.26",
"react-window": "^1.8.11",
"zod": "^3.25.76"
},
"devDependencies": {
"@clack/prompts": "^0.11.0",
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^20.19.39",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-next": "15.5.15",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"wrangler": "^4.83.0"
}
}