-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@material-ui/core": "^4.9.8",
"@material-vega/core": "*",
"@material-vega/material-ui": "*",
"@material-vega/storybook-addon-chart-panels": "0.2.0",
"@material-vega/storybook-addon-preview-original": "0.2.0",
"@redwerks/eslint-config": "^0.2.1",
"@redwerks/eslint-config-jest": "^0.2.1",
"@redwerks/eslint-config-react": "^0.2.1",
"@redwerks/eslint-config-typescript": "^0.2.1",
"@storybook/addon-contexts": "^5.3.18",
"@storybook/addon-docs": "^5.3.18",
"@storybook/addons": "^5.3.8",
"@storybook/api": "^5.3.9",
"@storybook/components": "^5.3.9",
"@storybook/core-events": "^5.3.9",
"@storybook/html": "^5.3.3",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.18",
"@storybook/router": "^5.3.9",
"@storybook/theming": "^5.3.9",
"@storybook/ui": "^5.3.9",
"@types/jest": "^24.9.0",
"@types/lodash.merge": "^4.6.6",
"@types/resize-observer-browser": "^0.1.3",
"@types/webpack": "^4.41.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-loader": "^8.1.0",
"clsx": "^1.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"husky": "^4.0.9",
"lerna": "^3.20.2",
"license-validator": "^1.0.2",
"lint-staged": "^9.5.0",
"lit-html": "^1.1.2",
"material-ui": "^0.20.2",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.12.0",
"react-vega": "^7.3.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"vega": "^5.9.1",
"vega-embed": "^6.2.1",
"vega-lite": "^4.0.2",
"webpack": "*"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "yarn workspaces run build",
"storybook-core": "node_modules/@storybook/html/bin/index.js -p 5501 -c .storybook/core -s ./static",
"storybook-material-ui": "node_modules/@storybook/react/bin/index.js -p 5502 -c .storybook/material-ui -s ./static",
"build-storybook-core": "node_modules/@storybook/html/bin/build.js -o build/core -c .storybook/core -s ./static",
"build-storybook-material-ui": "node_modules/@storybook/react/bin/build.js -o build/material-ui -c .storybook/material-ui -s ./static --docs",
"lint": "eslint --cache 'packages/**/*.{js,jsx,ts,tsx}' --ext .js,.jsx,.ts,.tsx",
"pretty": "prettier --write \"packages/*/src/**/*.{js,jsx,ts,tsx}\" .eslintrc.js lerna.json tsconfig.json babel.config.js .storybook/**/*.js",
"license": "yarn workspaces run license-validator -i"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn workspaces run license-validator"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --ext .js,.jsx,.ts,.tsx"
]
},
"engines": {
"npm": "use yarn"
}
}