-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 944 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 944 Bytes
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
{
"name": "docs-internal",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint '**/*.{js,ts,jsx,tsx,cjs,mjs}' --no-error-on-unmatched-pattern",
"lint:fix": "$npm_execpath run lint -- --fix",
"prettier": "prettier . --check",
"prettier:fix": "$npm_execpath run prettier -- --write"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/starlight": "^0.37.0",
"astro": "^5.9.4",
"globals": "^17.0.0",
"sharp": "^0.34.2",
"typescript": "^5.9.2"
},
"devDependencies": {
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1"
}
}