-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
51
52
53
54
55
{
"name": "cloudvalid-com",
"type": "module",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start:original": "astro dev",
"start": "bun run ./server.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "bun run lint:ts && bun run lint:md",
"lint:ts": "eslint .",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/node": "^9.5.4",
"@astrojs/starlight": "^0.37.6",
"@astrojs/starlight-tailwind": "^4.0.2",
"@tailwindcss/vite": "^4.0.7",
"astro": "^5.6.1",
"astro-seo": "^1.1.0",
"sharp": "^0.34.2",
"sirv": "^3.0.2",
"tailwindcss": "^4.0.7"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.6",
"@eslint/js": "^10.0.1",
"@typescript-eslint/parser": "^8.56.1",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/aspect-ratio": "^0.4.2",
"eslint": "^10.0.2",
"eslint-plugin-astro": "^1.6.0",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.56.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"npx markdownlint-cli --fix"
],
"*.{json,css,scss}": [
"prettier --write"
]
}
}