-
-
Notifications
You must be signed in to change notification settings - Fork 745
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "broadcast-channel",
"type": "module",
"version": "0.1.7",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "test -d .git && simple-git-hooks || true"
},
"dependencies": {
"@astrojs/rss": "^4.0.7",
"@sentry/astro": "^8.27.0",
"cheerio": "1.0.0-rc.12",
"dayjs": "^1.11.13",
"flourite": "^1.3.0",
"lru-cache": "^11.0.0",
"ofetch": "^1.3.4",
"prismjs": "^1.29.0",
"prismjs-components-importer": "^0.2.0",
"sanitize-html": "^2.13.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@astrojs/cloudflare": "^11.0.4",
"@astrojs/netlify": "^5.5.1",
"@astrojs/node": "^8.3.3",
"@astrojs/vercel": "^7.8.0",
"@types/prismjs": "^1.26.4",
"astro": "^4.15.1",
"astro-eslint-parser": "^1.0.2",
"astro-seo": "^0.8.4",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.5",
"eslint": "9.5.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.9",
"postcss-nesting": "^13.0.0",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.11.1",
"std-env": "^3.7.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"browserslist": [
"defaults"
]
}