-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 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": "astro-starter-template",
"type": "module",
"version": "3.1.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky",
"lint:js": "eslint .",
"lint:ts": "astro check && tsc --noEmit",
"lint": "pnpm run lint:js && pnpm run lint:ts",
"test": "vitest"
},
"dependencies": {
"astro": "^6.0.0",
"astro-compress": "^2.2.3",
"astro-purgecss": "^6.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^10.0.1",
"@types/node": "^24.0.0",
"@typescript-eslint/parser": "^8.0.0",
"commitizen": "^4.3.0",
"dotenv": "^17.0.0",
"eslint": "^10.0.0",
"eslint-plugin-astro": "^1.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"globals": "^17.0.0",
"husky": "^9.0.11",
"prettier-plugin-astro": "^0.14.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.0"
}
}