-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "natsuiro-nikki-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"deploy": "astro build && npx wrangler@latest deploy",
"test": "astro check",
"fmt": "npx prettier . --write",
"lint": "eslint \"src/**/*.{ts,tsx,astro}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx,astro}\"",
"astro": "astro",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.6.0",
"@types/js-cookie": "^3.0.6",
"astro": "^5.16.6",
"js-cookie": "^3.0.5",
"typescript": "^5.9.2",
"wrangler": "^4.33.1"
},
"devDependencies": {
"eslint": "^9.29.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^16.2.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.2",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"typescript-eslint": "^8.35.0"
}
}