forked from geocortex/dev-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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:links && npm run lint:spelling && npm run lint:style",
"lint:links": "remark -f -q -u validate-links \"docs/**/*.mdx\"",
"lint:spelling": "cspell \"{docs,src}/**\"",
"lint:style": "npm run prettier -- --check",
"prettier": "prettier \"**/*.{css,js,jsx,ts,tsx,md,mdx,json}\"",
"prettier:write": "npm run prettier -- --write",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy"
},
"dependencies": {
"@docusaurus/core": "2.0.0-alpha.54",
"@docusaurus/preset-classic": "2.0.0-alpha.54",
"@types/react": "^16.9.34",
"classnames": "^2.2.6",
"cspell": "^4.0.57",
"husky": "3.1.0",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"remark-cli": "^8.0.0",
"remark-validate-links": "^10.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}