-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "rxdev-man",
"type": "module",
"version": "1.10.17",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && bun run pagefind",
"pagefind": "bunx pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^5.0.3",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/vercel": "^10.0.4",
"@iconify-json/fa6-brands": "^1.2.6",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/ri": "^1.2.10",
"@supabase/supabase-js": "^2.103.3",
"astro": "^6.1.7",
"astro-auto-import": "^0.5.1",
"astro-icon": "^1.1.5",
"astro-pagefind": "^1.8.6",
"typescript": "^6.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"conventional-changelog-conventionalcommits": "^9.3.1",
"eslint": "^10.0.0",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-format": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"semantic-release": "^25.0.3"
},
"overrides": {
"minimatch": "^10.2.3",
"path-to-regexp": "^8.0.0"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,mdx,astro}": [
"eslint --fix"
]
}
}