-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.8 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@lavamoat/website",
"version": "0.0.1",
"type": "module",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"lint": "npm run lint:eslint && npm run lint:markdown",
"lint:commit": "commitlint",
"lint:eslint": "eslint .",
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
"lint:staged": "lint-staged",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev",
"tsc": "tsc",
"tsc:config": "tsc --showConfig"
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/starlight": "0.24.4",
"@fontsource/radio-canada": "5.0.20",
"astro": "4.11.1",
"astro-embed": "0.7.2",
"typescript": "~5.4.5"
},
"devDependencies": {
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"@eslint/js": "9.2.0",
"eslint": "8.57.0",
"eslint-plugin-astro": "1.2.0",
"eslint-plugin-jsonc": "2.15.1",
"husky": "9.0.11",
"lint-staged": "15.2.10",
"markdownlint-cli2": "0.14.0",
"markdownlint-cli2-formatter-pretty": "0.0.6",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-pkg": "0.18.1",
"sharp": "0.33.3",
"typescript-eslint": "7.9.0"
},
"lint-staged": {
"*.(m?js|ts)": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"markdownlint-cli2 --fix"
],
"*.(mdx?|ya?ml|json|astro)": [
"prettier --write"
],
"!(package-lock*).json": [
"prettier --write"
]
},
"prettier": {
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-pkg"
],
"singleQuote": true
}
}