-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 896 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
{
"name": "engineering-vault-astro-poc",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "node .husky/install.mjs"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,astro,json,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"@astrojs/mdx": "^4",
"@astrojs/rss": "^4.0.18",
"astro": "^5"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@mdx-js/mdx": "^3.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3",
"prettier-plugin-astro": "^0.14"
}
}