-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.86 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
{
"name": "vertigis-studio-dev-center",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"lint": "npm run lint:spelling && npm run lint:style && npm run lint:links:md",
"lint:links": "npm run lint:links:md && npm run lint:links:ext",
"lint:links:md": "remark -f -q -u validate-links --silently-ignore --ignore-pattern \"docs/**/api-objects.mdx\" \"docs/**/*.mdx\"",
"lint:links:ext": "linkinator ./build -r --silent --concurrency 10 --skip https://github.com",
"lint:spelling": "cspell \"{docs,src}/**\"",
"lint:style": "npm run prettier -- --check",
"prettier": "prettier --write \"**/*.md\" \"**/*.mdx\" \"**/*.css\" \"**/*.js\" \"**/*.jsx\" \"**/*.json\" \"**/*.ts\" \"**/*.tsx\"",
"serve": "docusaurus serve",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy"
},
"dependencies": {
"@docusaurus/core": "^3.2.1",
"@docusaurus/preset-classic": "^3.2.1",
"@types/react": "^18.2.0",
"clsx": "^1.2.1",
"cspell": "^5.6.4",
"highlight.js": "^11.9.0",
"linkinator": "^5.0.1",
"lscache": "^1.3.2",
"marked": "^12.0.1",
"marked-highlight": "^2.1.1",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-cli": "^9.0.0",
"remark-validate-links": "^10.0.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.2.1",
"@docusaurus/tsconfig": "^3.2.1",
"@docusaurus/types": "^3.2.1",
"@types/lscache": "^1.3.4",
"simple-git-hooks": "2.3.1"
},
"browserslist": [
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari versions"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{css,js,jsx,json,ts,tsx,md,mdx}": "prettier --write"
}
}