-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "bearroll",
"private": true,
"type": "module",
"scripts": {
"collect": "tsx scripts/collect.ts",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check-types": "astro check",
"format": "prettier --write .",
"lint": "eslint src --max-warnings 0",
"check-all": "prettier --write . && astro check && eslint src --max-warnings 0 && astro build",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,astro,js,mjs,css,md,json,html,yml,yaml}": "prettier --write",
"src/**/*.{ts,astro,js}": "eslint --max-warnings 0"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.1",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.0.8",
"cheerio": "^1.2.0",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
}
}