-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "polkadot-api-docs",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vocs dev",
"build": "vocs build",
"preview": "vocs preview",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,md,mdx,css,cjs}\"",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-tabs": "^1.1.1",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2",
"vocs": "1.0.0-alpha.62"
},
"devDependencies": {
"@homer0/prettier-plugin-jsdoc": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.1"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "all",
"plugins": [
"@homer0/prettier-plugin-jsdoc"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,mdx,css,cjs}": "prettier --write"
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}