-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 3.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "fatehak.dev",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "BUILD=development astro dev",
"build:dev": "BUILD=development astro build",
"build:prod": "BUILD=production astro build",
"preview": "astro preview",
"astro": "astro",
"clean": "pnpm rimraf dist node_modules/.vite node_modules/.cache",
"lint": "concurrently -g -n \"prettier,stylelint,eslint\" -c \"bgGreen.bold,bgMagenta.bold,bgBlue.bold\" \"pnpm prettier-check\" \"pnpm stylelint-check\" \"pnpm eslint-check\"",
"lint:fix": "pnpm eslint-fix && pnpm stylelint-fix && pnpm prettier-fix",
"prettier-check": "prettier --loglevel warn --plugin-search-dir=. --cache --cache-strategy content --cache-location ./node_modules/.cache/.prettiercache --check .",
"prettier-fix": "prettier --loglevel warn --plugin-search-dir=. --cache --cache-strategy content --cache-location ./node_modules/.cache/.prettiercache --write .",
"stylelint-check": "stylelint --max-warnings=0 --custom-formatter=node_modules/stylelint-formatter-pretty --aei --cache --cache-strategy content --cache-location ./node_modules/.cache/.stylelintcache '{**/*,*}.{css,astro}'",
"stylelint-fix": "pnpm stylelint-check --fix",
"eslint-check": "eslint --max-warnings=0 --format=pretty --cache --cache-strategy content --cache-location ./node_modules/.cache/.eslintcache '{**/*,*}.{js,ts,mjs,astro,mdx,md}'",
"eslint-fix": "pnpm eslint-check --fix",
"prepare": "husky install",
"lint-staged": "lint-staged",
"cz": "czg"
},
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@astrojs/image": "^0.18.0",
"@astrojs/prefetch": "^0.4.1",
"@astrojs/rss": "^2.4.4",
"@astrojs/sitemap": "^1.4.0",
"@astrojs/tailwind": "^3.1.3",
"@commitlint/cli": "^17.8.1",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@typescript-eslint/parser": "^5.62.0",
"astro": "^2.10.15",
"astro-compress": "^2.0.15",
"browserslist-to-esbuild": "^1.2.0",
"concurrently": "^8.2.0",
"czg": "1.6.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-astro": "^0.27.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdownlint": "^0.4.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.19.0",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mdast-util-to-string": "^3.2.0",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^8.5.1",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"reading-time": "^1.5.0",
"rehype-accessible-emojis": "^0.3.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.1.0",
"rehype-pretty-code": "^0.9.11",
"rehype-slug": "^5.1.0",
"remark-emoji": "^3.1.2",
"rimraf": "^5.0.1",
"sharp": "^0.32.1",
"shiki": "^0.14.7",
"stylelint": "^15.9.0",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-standard": "^33.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"stylelint-formatter-pretty": "^3.2.0",
"stylelint-order": "^6.0.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}