-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.68 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.68 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
{
"name": "cloudflare-custom-pages-nextjs",
"version": "1.1.3",
"license": "GPL-3.0-or-later",
"description": "A beautiful, out-of-the-box Cloudflare WAF custom page template.",
"author": {
"name": "Alice39s"
},
"repository": {
"type": "git",
"url": "https://github.com/Alice39s/cloudflare-custom-pages-nextjs.git"
},
"private": true,
"scripts": {
"predev": "bun run format-lint",
"dev": "next dev --turbo",
"prebuild": "bun run format-lint",
"build": "next build",
"postbuild": "bun scripts/assets-process.ts",
"prestart": "bun run build",
"start": "bun x serve out -p 3001",
"format-lint": "bun run format && bun run lint",
"format": "bunx biome format --fix --write pages config components scripts types utils tsconfig.json tailwind.config.js postcss.config.js package.json next.config.js",
"lint": "bunx biome check --write pages config components scripts types utils tsconfig.json tailwind.config.js postcss.config.js package.json next.config.js"
},
"dependencies": {
"@heroui/button": "2.2.21",
"@heroui/code": "2.2.16",
"@heroui/input": "2.4.21",
"@heroui/kbd": "2.2.17",
"@heroui/link": "2.2.18",
"@heroui/listbox": "2.3.20",
"@heroui/navbar": "2.2.19",
"@heroui/react": "2.7.10",
"@heroui/snippet": "2.2.22",
"@heroui/switch": "2.2.19",
"@heroui/system": "2.4.17",
"@heroui/theme": "2.4.17",
"@react-aria/ssr": "^3.9.10",
"@react-aria/visually-hidden": "^3.8.28",
"@types/glob": "^8.1.0",
"clsx": "^2.1.1",
"glob": "^11.1.0",
"intl-messageformat": "^10.7.18",
"lucide-react": "0.475.0",
"next": "^15.5.9",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"recharts": "^2.15.4",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@next/eslint-plugin-next": "^15.5.9",
"@react-types/shared": "3.25.0",
"@types/node": "20.5.7",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"autoprefixer": "10.4.19",
"cheerio": "^1.1.2",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.9",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "4.1.4",
"postcss": "8.4.49",
"prettier": "3.3.3",
"serve": "^14.2.5",
"tailwind-variants": "0.1.20",
"tailwindcss": "3.4.16",
"typescript": "5.6.3"
}
}