-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 949 Bytes
/
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
{
"name": "animeko-website",
"type": "module",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"code:check": "eslint .",
"code:lint": "eslint . --fix --no-ignore",
"astro": "astro",
"postinstall": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/vue": "^4.5.2",
"@headlessui/vue": "^1.7.23",
"@types/node": "^22.7.7",
"astro": "^4.16.6",
"danmaku": "^2.0.7",
"octokit": "^4.0.2",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vue": "^3.5.12"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@iconify/vue": "^4.1.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"lint-staged": {
"*.vue": "eslint --fix",
"*.astro": "astro check"
}
}