-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 KB
/
package.json
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
{
"name": "keyconsuling-blog",
"version": "1.0.0",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"commit": "git cz",
"dev": "astro dev",
"format": "prettier --write .",
"lint": "eslint src",
"prepare": "husky install",
"preview": "astro preview",
"start": "astro dev"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/mdx": "^3.0.1",
"@astrojs/rss": "^4.0.6",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.8.6",
"astro-font": "^0.0.81",
"astro-meta-tags": "^0.3.0",
"astro-robots-txt": "^1.0.0",
"astro-seo": "^0.8.3",
"sass": "^1.77.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@prettier/plugin-xml": "^3.4.1",
"@tailwindcss/typography": "^0.5.13",
"@typescript-eslint/parser": "^7.9.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.3.0",
"eslint-plugin-astro": "^1.2.0",
"eslint-plugin-frontmatter": "^0.0.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.5",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-mdx": "^3.1.5",
"git-precommit-checks": "^3.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"validate-branch-name": "^1.3.0"
},
"swpm": "pnpm"
}