-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
110 lines (110 loc) · 4.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "docusaurus",
"version": "1.0.4",
"private": true,
"scripts": {
"prestart": "yarn run buildnavplugin && yarn run buildcookiesplugin",
"buildnavplugin": "cd ./src/plugins/docusaurus-plugin-navdata && yarn install && (yarn unlink > /dev/null || true) && yarn link",
"buildcookiesplugin": "cd ./src/plugins/docusaurus-plugin-cookiesbanner && yarn install && (yarn unlink > /dev/null || true) && yarn link",
"start": "docusaurus start --no-open",
"build": "yarn run buildnavplugin && yarn link docusaurus-plugin-navdata && yarn run buildcookiesplugin && yarn link docusaurus-plugin-cookiesbanner && docusaurus build",
"preinstall": "yarn run buildnavplugin && yarn link docusaurus-plugin-navdata && yarn run buildcookiesplugin && yarn link docusaurus-plugin-cookiesbanner",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"check:externals": "node check-external-urls.js",
"check:unused": "node check-md-unused.js",
"run:i18n": "cd scripts && sh ./setup-i18n-json.sh && sh ./setup-i18n-md.sh && yarn run:prettier",
"run:ids": "docusaurus write-heading-ids",
"run:crowdin": "docusaurus write-translations && crowdin upload && crowdin download",
"run:migrate": "cd scripts && sh ./rst-to-md.sh",
"run:prettier": "prettier . --list-different --write",
"run:eslint": "eslint . --ext .js,.ts,.jsx,.tsx --fix",
"run:textlint": "yarn run textlint source/docs",
"run:lint": "yarn run:eslint",
"run:alex": "alex source/docs",
"format": "yarn run:lint && yarn run:prettier",
"reinstall": "rm -rf ./node_modules && yarn",
"prepare": "husky install",
"commit": "lint-staged"
},
"dependencies": {
"@cmfcmf/docusaurus-search-local": "^0.10.0",
"@crowdin/cli": "3",
"@docusaurus/core": "^2.4.0",
"@docusaurus/plugin-content-docs": "^2.4.1",
"@docusaurus/preset-classic": "^2.4.0",
"@mdx-js/react": "^1.6.21",
"@svgr/webpack": "^5.5.0",
"algoliasearch": "^4.1.0",
"clsx": "^1.1.1",
"docusaurus-plugin-sass": "^0.2.3",
"dotenv": "^16.0.3",
"file-loader": "^6.2.0",
"js-cookie": "^3.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-instantsearch-hooks-web": "^6.40.1",
"react-transition-group": "^4.4.5",
"sass": "^1.49.0",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@actions/core": "^1.6.0",
"@docusaurus/module-type-aliases": "^2.4.0",
"@tsconfig/docusaurus": "^1.0.5",
"@types/react": "^17.0.15",
"@types/react-helmet": "^6.1.2",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"alex": "^9.1.0",
"ansi-styles": "^5.2.0",
"eslint": "7.13.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"glob": "^7.2.0",
"husky": "^6.0.0",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"pretty-quick": "^3.1.1",
"puppeteer": "^13.1.3",
"textlint": "^11.3.1",
"textlint-rule-alex": "^1.3.1",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-en-capitalization": "^2.0.2",
"textlint-rule-stop-words": "^1.0.17",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-write-good": "^1.6.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=16.14"
},
"engineStrict": true,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"yarn run:lint"
]
},
"peerDependencies": {
"@docusaurus/theme-common": "^2.3.1"
}
}