forked from awslabs/synchro-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "iot-app-kit-visualizations",
"version": "2.0.0",
"description": "Time series visualization library",
"homepage": "https://synchrocharts.com",
"main": "index.js",
"repository": "git@github.com:awslabs/synchro-charts.git",
"private": true,
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.0.0 <2.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "husky install",
"bootstrap": "yarn install && yarn build",
"build": "lerna run build --stream",
"clean": "lerna run clean --concurrency 4",
"lint:fix": "lerna run fix --stream --concurrency 4",
"lint": "lerna run lint --stream --concurrency 4",
"test": "npm run test:packages && npm run test:git",
"test:packages": "lerna run test --stream --concurrency 1",
"test:git": "git diff --exit-code",
"pack": "lerna run pack",
"versionup:auto": "lerna version --conventional-commits --no-changelog --no-push --no-git-tag-version --yes",
"versionup:patch": "lerna version patch --conventional-commits --no-changelog --no-push --no-git-tag-version --yes",
"versionup:minor": "lerna version minor --conventional-commits --no-changelog --no-push --no-git-tag-version --yes",
"versionup:major": "lerna version major --conventional-commits --no-changelog --no-push --no-git-tag-version --yes",
"publishToNpm": "lerna publish from-package --no-verify-access --yes"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn build && yarn test && yarn lint-fix"
}
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^17.6.5",
"@commitlint/config-lerna-scopes": "^17.6.3",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"commitlint": "^12.1.4",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^6.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^8.0.3",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"rimraf": "^5.0.1"
}
}