-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.24 KB
/
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
37
38
39
40
41
42
43
{
"name": "heschl.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"lint:eslint": "eslint .",
"format:code": "prettier . -w --plugin-search-dir=.",
"format-lint": "npm run format:code && npm run lint:eslint",
"prepare": "husky install",
"husky": "husky"
},
"dependencies": {
"@astrojs/check": "^0.3.2",
"@astrojs/starlight": "^0.29.3",
"@expressive-code/plugin-collapsible-sections": "^0.31.0",
"@fontsource/ibm-plex-sans": "^5.1.0",
"@fontsource/jetbrains-mono": "^5.0.18",
"astro": "^4.16.17",
"sharp": "^0.32.5",
"typescript": "^5.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"astro-eslint-parser": "^0.16.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.31.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.2.4",
"prettier-plugin-astro": "^0.13.0"
},
"lint-staged": {
"*.{ts,js,astro,mjs,cjs}": "eslint",
"*.{json,css,ts,js,astro,mjs,cjs}": "prettier --check"
}
}