-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (41 loc) · 1.03 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": "ignat.dev",
"type": "module",
"version": "3.0.0",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "tsc --noEmit && astro check",
"deploy": "npm run build && npx firebase deploy",
"dev": "astro dev",
"lint": "eslint . --ext .astro,.js,.ts",
"lint-fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"prepare": "git config core.hooksPath .githooks && chmod +x .githooks/* || true",
"preview": "astro preview"
},
"dependencies": {
"@astrojs/mdx": "^4",
"@picocss/pico": "^2",
"astro": "^5"
},
"devDependencies": {
"@astrojs/check": "^0.9",
"@eslint/js": "^9",
"@stylistic/eslint-plugin": "^1",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^9",
"eslint-plugin-astro": "^1",
"lint-staged": "^16",
"sass-embedded": "^1",
"typescript": "^5"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.0.0"
},
"lint-staged": {
"*.{astro,js,ts,tsx}": "eslint"
}
}