-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.41 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
{
"name": "baiye",
"version": "6.1.0",
"description": "Astro and Tailwindcss boilerplate",
"author": "Baiye",
"license": "MIT",
"packageManager": "bun@1.3.14",
"type": "module",
"scripts": {
"dev": "concurrently \"node scripts/themeGenerator.js --watch\" \"node scripts/jsonGenerator.js && astro dev\"",
"build": "node scripts/themeGenerator.js && node scripts/jsonGenerator.js && astro build && node scripts/llmsGenerator.js",
"preview": "astro preview",
"check": "astro check",
"format": "prettier -w ./src",
"generate-json": "node scripts/jsonGenerator.js",
"generate-llms": "node scripts/llmsGenerator.js",
"new:post": "node scripts/newPost.js",
"remove-darkmode": "node scripts/removeDarkmode.js && bun run format",
"deploy": "bun run build && wrangler pages deploy --project-name baiye",
"lint": "oxlint src/lib/utils --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@astrojs/check": "0.9.8",
"@astrojs/mdx": "5.0.3",
"@astrojs/react": "5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "3.7.2",
"@digi4care/astro-google-tagmanager": "^1.6.0",
"@fontsource/maple-mono": "^5.2.6",
"@justinribeiro/lite-youtube": "^1.9.0",
"astro": "6.1.9",
"astro-auto-import": "^0.5.1",
"astro-swiper": "^2.5.0",
"date-fns": "^4.1.0",
"disqus-react": "^1.1.7",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"marked": "^17.0.6",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"sharp": "^0.34.5",
"vite": "8.0.11",
"vitest": "^3.2.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "25.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"concurrently": "^9.2.1",
"eslint": "^10.2.0",
"glob": "^13.0.6",
"node-html-parser": "^7.1.0",
"turndown": "^7.2.4",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"oxlint": "^1.20.0",
"tailwind-bootstrap-grid": "^7.0.0",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"wrangler": "^4.80.0"
},
"overrides": {
"typescript": "$typescript",
"astro": "$astro"
}
}