-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.89 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
{
"name": "bbps",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --hostname 0.0.0.0",
"build": "next build && node scripts/build-sw.mjs && node scripts/generate-feed.mjs",
"start": "next start",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck",
"download-assets": "node scripts/download-assets.mjs",
"migrate-blog": "node scripts/migrate-blog.mjs"
},
"dependencies": {
"@fontsource-variable/noto-sans": "^5.2.10",
"@fontsource-variable/noto-sans-sc": "^5.2.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@waline/client": "^3.13.0",
"artalk": "^2.9.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"framer-motion": "^12.36.0",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"serwist": "^9.5.6",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@serwist/build": "^9.5.6",
"@serwist/cli": "^9.5.6",
"@tailwindcss/postcss": "^4",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"esbuild": "^0.27.4",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"fast-xml-parser": "^5.5.4",
"sharp": "^0.34.5",
"tailwindcss": "^4",
"turndown": "^7.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
}
}