-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "news47ell",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "TAILWIND_MODE=watch astro dev",
"start": "TAILWIND_MODE=watch astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --check \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"lint:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\"",
"update": "pnpx npm-check-updates --format group --interactive",
"pre-commit": "pnpx lint-staged",
"prepare": "husky install",
"find:depcheck": "pnpx depcheck"
},
"dependencies": {
"@astrojs/mdx": "^2.1.1",
"@astrojs/rss": "^4.0.4",
"@astrojs/tailwind": "^5.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"astro": "^4.3.0",
"astro-expressive-code": "^0.29.4",
"markdown-it": "^14.0.0",
"mdast-util-to-string": "^4.0.0",
"sanitize-html": "^2.11.0",
"sharp": "^0.33.0",
"tailwindcss": "^3.3.6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/sanitize-html": "^2.9.5",
"@types/unist": "^3.0.2",
"@typescript-eslint/parser": "^6.14.0",
"astro-eslint-parser": "^0.16.0",
"eslint": "^8.55.0",
"eslint-plugin-astro": "^0.30.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2"
}
}