-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 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
{
"private": true,
"license": "MIT",
"scripts": {
"start": "yarn workspaces foreach -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 -tvp run build",
"build:i18n": "cross-env BUILD_TYPE='i18n' yarn workspaces foreach -tvp run build",
"build:preview": "cross-env BUILD_TYPE='preview' yarn workspaces foreach -tvp run build",
"build:theme": "yarn workspace @easyops-cn/docusaurus-search-local run build",
"build:website": "yarn workspace website run build",
"serve": "yarn workspace website run serve",
"test": "cross-env NODE_ENV='test' jest",
"prepare": "husky install",
"lint-staged": "lint-staged",
"prettier": "prettier --write ."
},
"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": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^28.1.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",
"lint-staged": "^13.0.0",
"prettier": "2.7.1",
"typescript": "^4.6.4"
},
"workspaces": [
"docusaurus-search-local",
"website"
],
"packageManager": "[email protected]",
"resolutions": {
"@docusaurus/core": "2.0.0-beta.20",
"@docusaurus/preset-classic": "2.0.0-beta.20",
"@docusaurus/theme-classic": "2.0.0-beta.20",
"@docusaurus/theme-common": "2.0.0-beta.20"
},
"dependencies": {
"@easyops-cn/docusaurus-search-local": "workspace:^"
}
}