-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "root",
"private": true,
"engines": {
"npm": ">=7.0.0"
},
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"deploy": "pnpm run docs:build && pnpm run docs:deploy",
"publish": "lerna publish --yes --conventional-commits --no-verify-access",
"postinstall": "husky install",
"lint": "eslint .",
"bootstrap": "lerna bootstrap",
"test": "jest",
"build": "cd packages/launcher && pnpm run build",
"preinstall": "npx -y only-allow pnpm"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@swc/core": "^1.2.133",
"@swc/jest": "^0.2.17",
"@types/jest": "^26.0.24",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@umijs/test": "^3.0.5",
"codecov": "^3.8.3",
"dumi": "^1.0.16",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.5.1",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.7.4",
"yorkie": "^2.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}