-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "aws-synchro-charts",
"version": "0.1.0",
"description": "Time series charting library",
"main": "index.js",
"repository": "git@github.com:awslabs/aws-synchro-charts.git",
"author": "Ashika Kasiviswanathan Arumugakarthik <akasivis@amazon.com>",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "husky install",
"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": "lerna run test --stream --concurrency 1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn test && yarn lint-fix"
}
},
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"@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.5.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"rimraf": "^3.0.2"
}
}