forked from WTW-IM/es-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "es-components",
"private": true,
"license": "MIT",
"scripts": {
"build": "sh build.sh",
"ci-run": "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",
"postinstall": "echo '\\033[0;32mInstalling npm dependencies for sub-packages\\033[0m' && lerna bootstrap --ci",
"prepare": "husky install"
},
"lint-staged": {
"packages/es-components/src/**/*.js": [
"prettier --single-quote --write",
"cd packages/es-components && npx eslint --fix"
]
},
"devDependencies": {
"@aabenoja/conventional-changelog-eslint-lerna": "^1.0.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt-cli": "^17.1.2",
"@rollup/plugin-babel": "^5.1.0",
"babel-eslint": "^9.0.0",
"commitlint": "^17.1.2",
"conventional-changelog": "^3.1.21",
"es-components-via-theme": "file:packages/es-components-via-theme",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^17.1.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": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.23.0"
}
}