-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 832 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
{
"name": "astro-starter",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"lint": "eslint . --cache",
"fix": "npm run lint -- --fix",
"preview": "astro preview",
"test": "vitest run"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/tailwind": "^5.1.2",
"astro": "^4.16.7",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3"
},
"devDependencies": {
"eslint": "^9.7.0",
"eslint-astro-mate": "^0.0.3",
"eslint-config-standard-ext": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-tailwindcss": "^3.17.5",
"vitest": "^2.0.5"
},
"pnpm": {
"overrides": {
"eslint": "$eslint"
}
}
}