-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.88 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
{
"name": "java-guru",
"version": "1.2.0",
"type": "module",
"private": false,
"scripts": {
"dev": "astro dev",
"build": "astro build && pagefind --site dist && cp -r dist/pagefind public/",
"preview": "astro preview",
"sync": "astro sync",
"astro": "astro",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"type-check": "astro check"
},
"volta": {
"node": "20.19.0",
"pnpm": "10.6.5"
},
"engines": {
"node": "20.19.0"
},
"dependencies": {
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.1.17",
"astro": "^5.16.5",
"lodash.kebabcase": "^4.1.1",
"luxon": "^3.7.2",
"remark-collapse": "^0.1.2",
"remark-toc": "^9.0.0",
"satori": "^0.15.2",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@pagefind/default-ui": "^1.4.0",
"@tailwindcss/typography": "^0.5.19",
"@types/lodash.kebabcase": "^4.1.9",
"@types/luxon": "^3.7.1",
"@typescript-eslint/parser": "^8.49.0",
"@vitest/coverage-v8": "~3.0.9",
"commitizen": "^4.3.1",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.5.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"pagefind": "^1.4.0",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vitest": "~3.0.9"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}