-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
88 lines (88 loc) · 2.5 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "git clean --force -dX",
"commit": "git-cz",
"doc": "lerna run doc && all-contributors generate",
"format": "prettier --ignore-path .gitignore --write .",
"postinstall": "lerna bootstrap",
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js}\"",
"publish": "lerna publish from-git --contents pkg --yes",
"release": "dotenv -- lerna version --create-release github",
"test": "jest",
"type-check": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-case": [
2,
"always",
"camel-case"
]
}
},
"lint-staged": {
"*.{ts,tsx,js,json,yml,md}": "prettier --write",
"*.{ts,tsx,js}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/prompt": "^8.2.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.3",
"@pika/plugin-build-web": "^0.8.3",
"@pika/plugin-ts-standard-pkg": "^0.8.3",
"@testing-library/react": "^10.0.4",
"@testing-library/react-hooks": "^3.1.0",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"all-contributors-cli": "^6.15.0",
"commitizen": "^4.1.2",
"documentation": "^13.0.0",
"dotenv-cli": "^3.0.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsdoc": "^26.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-testing-library": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lerna": "^3.22.0",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"prettier-plugin-packagejson": "^2.2.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.3"
}
}