-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.92 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "node ./scripts/bootstrap.js",
"build": "father-build",
"debug": "node --inspect-brk packages/umi/bin/umi.js",
"docs": "node ./scripts/docs.js",
"docs:build": "node ./packages/umi/bin/umi.js build",
"docs:dev": "node ./packages/umi/bin/umi.js dev",
"docs:sync": "node ./scripts/docs.js syncDocs",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"link:umi": "cd packages/umi && yarn link && cd -",
"release": "node ./scripts/release.js",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"sync:tnpm": "node -e 'require(\"./scripts/syncTNPM\")()'",
"now-build": "echo \"Hello\"",
"benchmark": "node scripts/benchmarks.js",
"update:deps": "yarn upgrade-interactive --latest"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "7.10.4",
"@testing-library/react": "^10.4.6",
"@types/babel__core": "7.1.9",
"@types/babel__traverse": "7.0.13",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"@umijs/core": "3.2.11",
"@umijs/plugin-analytics": "^0.2.2",
"@umijs/preset-dumi": "^1.0.33",
"@umijs/test": "3.2.11",
"@umijs/test-utils": "3.2.11",
"@umijs/utils": "3.2.11",
"benchmark": "^2.1.4",
"escape-goat": "^3.0.0",
"father-build": "^1.18.1",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"new-github-release-url": "^1.0.0",
"npm-run-all": "^4.1.5",
"open": "^7.0.4",
"prettier": "^2.0.5",
"yorkie": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umijs/umi.git"
}
}