forked from traveloka-archive/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 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
{
"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",
"precommit": "lint-staged",
"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"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.4.0",
"eslint-find-rules": "^3.1.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-marlint": "^0.1.0",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^0.14.3",
"lerna": "^3.13.1",
"lint-staged": "^4.0.4",
"prettier": "^1.6.0"
}
}