-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 886 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 886 Bytes
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
{
"private": "true",
"scripts": {
"test": "jest",
"postinstall": "simple-git-hooks",
"build:layout": "pnpm --filter @epeejs/pro-layout build"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13",
"@types/jest": "^27",
"@types/node": "^16.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@umijs/fabric": "^4.0.1",
"@umijs/test": "^4",
"father": "^4.2.2",
"jest": "^27",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"simple-git-hooks": "^2.8.1",
"ts-node": "^10",
"typescript": "^4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{json,ts,tsx,js,jsx,md,less,css,html}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "GIT_PARAMS=.git/COMMIT_EDITMSG pnpm fabric verify-commit"
}
}