forked from alitajs/alita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "node ./scripts/bootstrap.js",
"build": "father-build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"link:alita": "cd packages/alita && yarn link && cd -",
"release": "node ./scripts/release.js",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot",
"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"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@babel/core": "7.8.4",
"@testing-library/react": "^9.4.0",
"@types/babel__core": "7.1.3",
"@types/babel__traverse": "7.0.8",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@umijs/test": "^3.0.7",
"father-build": "^1.17.2",
"lerna": "^3.20.2",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"umi": "^3.0.7",
"yorkie": "^2.0.0"
}
}