This repository was archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 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
{
"private": true,
"license": "MIT",
"scripts": {
"publish": "lerna publish",
"bootstrap": "lerna bootstrap --npmClient=yarn",
"clean": "lerna clean",
"postinstall": "yarn bootstrap",
"test": "lerna run test && npm run check",
"fmt": "prettier **/*.{js,json,md} --write",
"check": "npm run check:rules && npm run check:prettier && npm run check:self",
"check:rules": "./scripts/check-missing-rule packages/eslint-config-marlint/index.js",
"check:prettier": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"check:self": "./packages/marlint/cli.js --quiet --verbose"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-find-rules": "^3.6.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-marlint": "^0.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^3.0.5",
"lerna": "^3.13.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}