-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "syslearn",
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "astro",
"prepare": "husky",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"clean": "npx -y rimraf ./node_modules ./.astro ./dist",
"check": "astro check && npm run tsc -b && npm run typo && npm run lint",
"lint": "eslint",
"typo": "cspell \"./src/**\" \"./scripts/**\" --gitignore"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/partytown": "^2.1.3",
"@astrojs/react": "^4.2.0",
"@astrojs/starlight": "^0.31.1",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/noto-sans-jp": "^5.1.1",
"@iconify-json/material-symbols": "^1.2.14",
"@iconify-json/mdi": "^1.2.3",
"@iconify/react": "^5.2.0",
"@mermaid-js/mermaid-cli": "^11.4.2",
"@southball/remark-mermaid": "^0.6.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"astro": "^5.1.5",
"astro-compress": "^2.3.6",
"astro-embed": "^0.9.0",
"astro-icon": "^1.1.5",
"astro-meta-tags": "^0.3.1",
"astro-seo": "^0.8.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remark-wiki-link-plus": "^1.1.1",
"sharp": "^0.32.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@eslint-react/eslint-plugin": "^1.26.0",
"cspell": "^8.17.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}