-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.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": "root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Bwc9876/Djazztro.git"
},
"packageManager": "[email protected]",
"scripts": {
"astro": "astro --root=docs",
"prettify": "prettier --write . --ignore-unknown",
"black": "poetry run black .",
"lint": "eslint --cache .",
"format": "pnpm prettify && pnpm lint --fix && pnpm black",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"prettier-plugin-astro": "^0.11.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{astro,js,ts,json,yaml}": "prettier --ignore-unknown --write",
"*.{js,ts}": "eslint --cache --fix",
"*.{py}": "poetry run black"
},
"dependencies": {
"@astrojs/starlight": "^0.7.2",
"astro": "^2.10.11",
"sharp": "^0.32.5"
}
}