-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "redux-cached-api-middleware-demos",
"private": true,
"license": "MIT",
"workspaces": [
"demos/*"
],
"scripts": {
"build": "lerna run build --parallel",
"clean": "lerna run clean --parallel",
"format": "prettier --write '**/*.*' && sort-package-json && lerna run format --parallel",
"lint": "run-p lint:*",
"lint:js": "eslint .",
"lint:md": "markdownlint README.md && markdownlint demos/crypto-dashboard/README.md && markdownlint demos/github-explorer/README.md && markdownlint demos/hn-lite/README.md",
"qa": "npm run lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@k.sh/eslint-config": "^1.2.0",
"babel-eslint": "^8.2.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"husky": "^1.0.0-rc.13",
"lerna": "^3.0.0-rc.0",
"markdownlint-cli": "^0.12.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.0"
},
"husky": {
"hooks": {
"pre-push": "yarn qa"
}
}
}