-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 Bytes
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
{
"name": "",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.mjs,.cjs,.ts,.tsx,.astro",
"lint:fix": "eslint . --ext .js,.mjs,.cjs,.ts,.tsx,.astro --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@astrojs/vercel": "^8.2.2",
"@tailwindcss/vite": "^4.1.11",
"astro": "^5.12.0",
"tailwindcss": "^4.1.11"
},
"volta": {
"node": "22.17.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.3.1",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1"
}
}