-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.81 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "30tools",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint . --fix",
"clean-imports": "node scripts/remove-unused-imports.cjs",
"predeploy": "rm -rf .next && rm -rf .open-next",
"deploy:small": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"deploy": "next build && opennextjs-cloudflare build --skipNextBuild && opennextjs-cloudflare deploy",
"deploy:fast": "next build && opennextjs-cloudflare build --skipNextBuild && opennextjs-cloudflare deploy",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"generate-icons": "node scripts/generate-icons.cjs",
"generate-feed": "node scripts/generate-feed.cjs",
"seo:audit": "node scripts/seo-audit-local.mjs"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.19.8",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@stackframe/stack": "^2.8.85",
"audiobuffer-to-wav": "^1.0.0",
"caniuse-lite": "^1.0.30001788",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^8.0.2",
"hls.js": "^1.6.14",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"lamejs": "^1.2.1",
"lucide-react": "^0.515.0",
"md5": "^2.3.0",
"next": "^16.2.6",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"wavesurfer.js": "^7.9.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/md5": "^2.3.6",
"@types/minimatch": "3.0.5",
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"baseline-browser-mapping": "^2.10.19",
"critters": "^0.0.25",
"dotenv": "^17.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "^16.2.6",
"eslint-plugin-unused-imports": "^4.3.0",
"sharp": "^0.34.2",
"tailwindcss": "^4",
"typescript": "^5.9.3",
"wrangler": "^4.45.3",
"zod": "^4.4.3"
},
"browserslist": [
"defaults",
"not ie 11"
]
}