-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "xsun-personal-website",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check",
"test": "vitest run"
},
"dependencies": {
"@astrojs/rss": "^4.0.15",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.17.1",
"fuse.js": "^7.1.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@astrojs/mdx": "^4.3.13",
"@eslint/js": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"shiki": "^3.22.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}