-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build && npx pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"typecheck": "astro sync && tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"test": "vitest run",
"test:watch": "vitest",
"buildcheck": "npm run typecheck && npm run lint && npm run format && npm run format:check && npm run test && npm run build"
},
"dependencies": {
"@astrojs/preact": "^4.1.3",
"preact": "^10.29.0"
},
"devDependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.1",
"@fontsource/inter": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.2.1",
"@vite-pwa/astro": "^1.2.0",
"astro": "^5.17.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.8.1",
"satori": "^0.26.0",
"tailwindcss": "^4.2.1",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}