-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "knowsex",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "pnpm --color --parallel \"/^dev:.*/\"",
"dev:astro": "astro dev",
"dev:scss": "sass --watch --no-source-map src/styles/style.scss:public/style/style.min.css",
"start": "astro dev",
"build": "zx ./scripts/build.mjs",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint .",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^2.0.1",
"@astrojs/sitemap": "^3.1.5",
"astro": "^4.0.4",
"bootstrap": "^5.2.3",
"dayjs": "^1.11.10",
"is-absolute-url": "^4.0.1",
"opencc-js": "^1.0.5",
"rehype": "^13.0.1",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"sharp": "^0.33.2",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/opencc-js": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.0.3",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"sass": "^1.69.6",
"zx": "^7.2.3"
},
"lint-staged": {
"(*.{mj,cj,j,t}s)|(*.astro)": "eslint"
}
}