-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
61 lines (61 loc) · 2.25 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
{
"private": true,
"license": "MIT",
"scripts": {
"start": "yarn workspaces foreach --all --exclude website-multi-docs -vp run start",
"start:theme": "yarn workspace @easyops-cn/docusaurus-search-local run start",
"start:website": "yarn workspace website run start",
"build": "yarn workspaces foreach --all --exclude website-multi-docs -tvp run build",
"build:i18n": "cross-env BUILD_TYPE='i18n' yarn workspaces foreach --all --exclude website-multi-docs -tvp run build",
"build:preview": "cross-env BUILD_TYPE='preview' yarn workspaces foreach --all --exclude website-multi-docs -tvp run build",
"build:theme": "yarn workspace @easyops-cn/docusaurus-search-local run build",
"build:website": "yarn workspace website run build",
"build:website-multi-docs": "yarn workspace website-multi-docs run build",
"serve": "yarn workspace website run serve",
"serve:website-multi-docs": "yarn workspace website-multi-docs run serve",
"test": "cross-env NODE_ENV='test' jest",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^28.1.0",
"cheerio": "^1.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-matcher-utils": "^29.6.4",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"typescript": "~5.2.2"
},
"workspaces": [
"docusaurus-search-local",
"website",
"website-multi-docs"
],
"packageManager": "[email protected]",
"resolutions": {
"@docusaurus/core": "3.0.0",
"@docusaurus/module-type-aliases": "3.0.0",
"@docusaurus/preset-classic": "3.0.0",
"@docusaurus/theme-classic": "3.0.0",
"@docusaurus/theme-common": "3.0.0",
"@docusaurus/plugin-content-docs": "3.0.0",
"@types/react": "18.2.37"
},
"engines": {
"node": ">=18"
}
}