-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "node ./scripts/bootstrap.js",
"build": "father-build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"link:cli": "cd packages/cli && yarn link && cd -",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot"
},
"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": {
"@types/jest": "^24.0.23",
"@umijs/test": "0.0.1-alpha.1",
"@umijs/utils": "0.0.1-alpha.1",
"father-build": "^1.17.1",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"yorkie": "^2.0.0"
},
"resolutions": {}
}