-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.9.0",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"test:lint": "astro check && eslint .",
"format": "prettier --write . && eslint --fix .",
"postinstall": "npx simple-git-hooks"
},
"dependencies": {
"@astrojs/mdx": "^4.2.5",
"@astrojs/sitemap": "^3.3.1",
"@nanostores/i18n": "^1.0.0",
"astro": "^5.7.5",
"astro-icon": "^1.1.5",
"nanostores": "^1.0.1",
"typescript": "^5.8.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@eslint/eslintrc": "^3.3.1",
"@typescript-eslint/parser": "^8.31.0",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.25.1",
"eslint-config-standard": "^17.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-promise": "^7.2.1",
"nano-staged": "^0.8.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "^2.13.0",
"typescript-eslint": "^8.31.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"eslint",
"eslint-plugin-n",
"eslint-plugin-promise"
]
}
}
}