forked from nielsen-oss/superset-viz-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 4.77 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "superset-viz-plugins",
"description": "Superset viz plugins by Nielsen",
"private": true,
"scripts": {
"build": "lerna run build:prod && lerna run build:esm",
"build:assets": "node ./scripts/copyAssets.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"clean": "rm -rf ./{plugins}/**/{dist,esm,tsconfig.tsbuildinfo} build/",
"format": "lerna exec prettier --write",
"lint": "eslint plugins/**/*.{ts,tsx} stories/**/*.tsx",
"lint:fix": "yarn lint --fix",
"prettier": "lerna exec prettier",
"test": "lerna run test --since origin/master",
"test:watch": "yarn lint:fix && yarn jest --watch",
"prepare-release": "git checkout origin/master && git pull --rebase origin origin/master && yarn install && yarn test",
"prerelease": "yarn build && yarn build:assets",
"pretest": "yarn lint",
"release": "yarn prepare-release && lerna publish && yarn postrelease",
"commit": "npx git-cz",
"clean-npm-lock": "rm -rf yarn.lock ./{plugins}/*/yarn.lock",
"ci:create-patch-version": "yarn clean-npm-lock && lerna version patch --yes",
"ci:create-minor-version": "yarn clean-npm-lock && lerna version minor --yes",
"ci:create-conventional-version": "yarn clean-npm-lock && lerna version --conventional-commits --create-release github ",
"ci:release-from-tag": "yarn lerna publish --no-verify-access --yes",
"ci:release-conventional": "yarn clean-npm-lock && lerna publish --conventional-commits --create-release github --no-git-tag-version --no-push"
},
"repository": "https://github.com/nielsen-oss/superset-viz-plugins",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "7.7.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^9.1.2",
"@commitlint/config-lerna-scopes": "^9.1.2",
"@emotion/jest": "^11.1.0",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^11.1.1",
"@testing-library/user-event": "^8.0.3",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/recharts": "^1.8.18",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-named-asset-import": "^0.3.5",
"babel-preset-react-app": "^9.1.0",
"chromatic": "^5.5.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^5.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-loader": "3.0.2",
"eslint-plugin-flowtype": "^4.5.3",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-resolve": "24.9.0",
"jest-transform-stub": "^2.0.0",
"lerna": "^3.22.1",
"lint-staged": "^10.0.3",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^16.13.1",
"react-loadable": "^5.5.0",
"thread-loader": "^2.1.3",
"ts-jest": "^26.4.4",
"ts-loader": "^7.0.5",
"typescript": "^4.0.5",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.2.0"
},
"engines": {
"node": ">=10.10.0",
"npm": ">=6.8.0",
"yarn": ">=1.13.0"
},
"workspaces": [
"./plugins/*"
],
"browserslist": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 safari versions",
"last 3 edge versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"./{packages,plugins}/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx,json,md}": [
"yarn prettier"
],
"./{packages,plugins}/*.md": [
"yarn prettier"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@superset-ui/chart-controls": "0.16.9",
"@superset-ui/core": "0.16.7"
}
}