-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "website",
"scripts": {
"dev-web": "astro dev",
"build-web": "astro build",
"preview": "astro preview",
"check-astro": "astro check",
"format": "prettier -w .",
"check-tsc": "tsc --noEmit",
"check-eslint": "eslint \"src/**/*.{ts,js,tsx,jsx,astro}\"",
"fix-eslint": "eslint --fix \"src/**/*.{ts,js,tsx,jsx,astro}\"",
"lint-web": "npm run check-astro && npm run check-tsc && npm run check-eslint",
"lint-fix": "npm run format && npm run check-astro && npm run check-tsc && npm run fix-eslint"
},
"devDependencies": {
"@astrojs/mdx": "^0.12.1",
"@astrojs/sitemap": "^1.0.0",
"@astrojs/solid-js": "^1.2.3",
"@astrojs/tailwind": "^2.1.3",
"@unocss/preset-attributify": "^0.47.5",
"@unocss/preset-wind": "^0.47.5",
"astro": "^1.6.14",
"astro-uno": "^0.2.1",
"i18next": "^22.4.14",
"i18next-http-backend": "^2.0.2",
"lint-staged": "^13.1.0",
"sass": "^1.56.2",
"solid-js": "^1.6.4",
"unocss": "^0.47.5",
"vite-plugin-solid": "^2.5.0"
}
}