-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
package.json
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
{
"name": "hacklab-website",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"engines": {
"node": "22.13.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"dev": "astro dev --host",
"build": "astro check && astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp"
},
"dependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@tailwindcss/vite": "^4.0.5",
"astro": "5.2.5",
"tailwindcss": "^4.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"bumpp": "10.0.2",
"daisyui": "^4.12.23",
"eslint": "^9.20.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "15.4.3",
"prettier-plugin-astro": "^0.14.1",
"simple-git-hooks": "2.11.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}