-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.51 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
{
"name": "geocortex-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 \"docs/**/*.mdx\"",
"lint:links:ext": "linkinator ./build -r --silent --concurrency 10",
"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": "2.0.0-beta.1",
"@docusaurus/preset-classic": "2.0.0-beta.1",
"@types/react": "^17.0.9",
"clsx": "^1.1.1",
"cspell": "^5.6.4",
"linkinator": "^2.13.6",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-cli": "^9.0.0",
"remark-validate-links": "^10.0.4"
},
"devDependencies": {
"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"
}
}