-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.86 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.86 KB
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
{
"name": "rh",
"private": true,
"scripts": {
"build": "father build",
"build:components": "cd packages/components && yarn build",
"dev": "father build --watch",
"dev:cli": "PACKAGE=cli father build --watch",
"prepare": "husky install",
"bootstrap": "lerna bootstrap",
"version:major": "lerna version major",
"version:minor": "lerna version minor",
"version:patch": "lerna version patch",
"publish:major": "lerna publish major",
"publish:minor": "lerna publish minor",
"publish:patch": "lerna publish patch",
"update-readme-toc": "doctoc README.md",
"test": "jest --coverage && npm run test:components",
"test:components": "cd packages/components && yarn test",
"report-coverage": "codecov"
},
"devDependencies": {
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-jest": "^27.4.6",
"codecov": "^3.8.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"fs-extra": "^10.0.0",
"git-user-name": "^2.0.0",
"husky": "^5.1.3",
"jest": "^27.4.7",
"jest-environment-node": "^27.4.6",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"readline": "^1.3.0",
"request": "^2.88.2",
"ts-jest": "^27.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "4.7.4"
},
"dependencies": {
"@babel/core": "^7.13.10",
"doctoc": "^2.0.1",
"execa": "^5.0.0",
"father": "^2.30.2",
"which": "^2.0.2"
},
"husky": {
"hooks": {
"commit-msg": "node ./scripts/git/commit-msg.js -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}