forked from WTW-IM/es-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "es-components",
"private": true,
"license": "MIT",
"scripts": {
"build": "sh build.sh",
"ci": "sh build.sh && sh ci.sh",
"version_only": "lerna publish --skip-npm --force-publish",
"publish_only": "lerna publish --skip-git",
"publish": "lerna publish",
"link": "lerna link --force-local",
"start": "npm start --prefix packages/es-components",
"commit": "commit"
},
"lint-staged": {
"packages/es-components/src/**/*.js": [
"prettier --single-quote --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/prompt-cli": "^8.3.5",
"babel-eslint": "^9.0.0",
"conventional-changelog-eslint": "^3.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-exchange-solutions": "^7.0.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^3.0.2",
"lerna": "^3.20.2",
"lint-staged": "^7.3.0",
"prettier": "^1.18.2"
}
}