forked from elastic/elastic-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
184 lines (184 loc) · 8.08 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "elastic-charts-mono",
"description": "Mono repo for @elastic/charts",
"author": "Elastic DataVis",
"license": "SEE LICENSE IN LICENSE.txt",
"private": "true",
"repository": "[email protected]:elastic/elastic-charts.git",
"workspaces": {
"packages": [
"packages/*",
"storybook"
]
},
"scripts": {
"postinstall": "cd ./e2e && yarn install && cd ../docs && yarn install && cd ../.buildkite && yarn install && cd ../github_bot && yarn install",
"run:bk:step": "cd .buildkite && yarn run:step",
"prepack": "echo 'This package is not published, see pacakges/*' && exit 1",
"autoprefix:css": "lerna run --loglevel=silent --scope @elastic/charts autoprefix:css --stream --no-prefix",
"api:check": "lerna run --loglevel=silent --scope @elastic/charts api:check --stream --no-prefix",
"api:check:local": "lerna run --loglevel=silent --scope @elastic/charts api:check:local --stream --no-prefix",
"api:extract": "lerna run --loglevel=silent --scope @elastic/charts api:extract --stream --no-prefix",
"backport": "backport",
"build": "lerna run --loglevel=silent --scope @elastic/charts build --stream --no-prefix",
"build:ts": "lerna run --loglevel=silent --scope @elastic/charts build:ts --stream --no-prefix",
"build:css": "lerna run --loglevel=silent --scope @elastic/charts build:css --stream --no-prefix",
"build:clean": "lerna run --loglevel=silent --scope @elastic/charts build:clean --stream --no-prefix",
"build:compile": "lerna run --loglevel=silent --scope @elastic/charts build:compile --stream --no-prefix",
"build:sass": "lerna run --loglevel=silent --scope @elastic/charts build:sass --stream --no-prefix",
"build:check": "lerna run --loglevel=silent --scope @elastic/charts build:check --stream --no-prefix",
"build:watch": "lerna run --loglevel=silent --scope @elastic/charts build:watch --stream --no-prefix",
"concat:sass": "lerna run --loglevel=silent --scope @elastic/charts concat:sass --stream --no-prefix",
"cz": "git-cz",
"lint": "NODE_ENV=production eslint --quiet --ext .tsx,.ts,.js .",
"lint:fix": "yarn lint --fix",
"lint:it": "NODE_ENV=production eslint --quiet --ext .tsx,.ts,.js",
"lint:fix:it": "yarn lint:it --fix",
"prettier:check": "prettier --check \"**/*.{json,html,css,scss}\"",
"prettier:fix": "prettier --w \"**/*.{json,html,css,scss}\"",
"playground": "cd playground && RNG_SEED='elastic-charts' webpack serve",
"pq": "pretty-quick",
"semantic-release": "semantic-release --debug",
"start": "yarn storybook",
"storybook": "lerna run --scope charts-storybook start --stream --no-prefix",
"storybook:build": "lerna run --scope charts-storybook build --stream --no-prefix",
"test": "jest --verbose --config jest.config.js",
"test:tz": "yarn test:tz-utc && yarn test:tz-ny && yarn test:tz-jp",
"test:tz-utc": "TZ=UTC jest --verbose --config=jest.tz.config.js",
"test:tz-ny": "TZ=America/New_York jest --verbose --config=jest.tz.config.js",
"test:tz-jp": "TZ=Asia/Tokyo jest --verbose --config=jest.tz.config.js",
"test:e2e": "cd e2e && yarn test",
"test:e2e:generate": "yarn test:e2e:generate:examples && yarn test:e2e:generate:page",
"test:e2e:generate:examples": "./e2e_server/scripts/extract_examples.sh",
"test:e2e:generate:page": "./e2e_server/scripts/compile_vrt_page.sh",
"test:e2e:server": "export NODE_OPTIONS=--openssl-legacy-provider; sh ./e2e_server/scripts/start.sh",
"test:e2e:server:build": "export NODE_OPTIONS=--openssl-legacy-provider; cd e2e_server/server && webpack build",
"typecheck:base": "tsc -p ./tsconfig.base.json --noEmit",
"typecheck:src": "lerna run --loglevel=silent --scope @elastic/charts typecheck --stream --no-prefix",
"typecheck:docs": "lerna run --loglevel=silent --scope elastic-charts-docs typecheck --stream --no-prefix",
"typecheck:storybook": "lerna run --loglevel=silent --scope charts-storybook typecheck --stream --no-prefix",
"typecheck:all": "yarn typecheck:base && yarn typecheck:src && yarn typecheck:docs && yarn typecheck:storybook",
"typedoc": "typedoc",
"ts:prune": "ts-prune"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@elastic/datemath": "^5.0.3",
"@elastic/eui": "^94.5.0",
"@emotion/react": "^11.10.5",
"@emotion/css": "^11.10.5",
"@mdx-js/loader": "^1.6.6",
"@microsoft/api-documenter": "^7.24.8",
"@microsoft/api-extractor": "^7.43.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@storybook/react": "^6.3.7",
"@types/chroma-js": "^2.4.2",
"@types/classnames": "^2.2.7",
"@types/color": "^3.0.1",
"@types/d3-array": "^1.2.6",
"@types/d3-cloud": "^1.2.5",
"@types/d3-collection": "^1.0.8",
"@types/d3-interpolate": "^3.0.1",
"@types/d3-scale": "^3.3.0",
"@types/d3-shape": "^2.0.0",
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.121",
"@types/luxon": "^1.25.0",
"@types/marked": "^2.0.1",
"@types/moment-timezone": "^0.5.30",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.1",
"@types/seedrandom": "^2.4.28",
"@types/url-parse": "^1.4.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"babel-loader": "^8.3.0",
"autoprefixer": "^9.0.0",
"backport": "^5.6.6",
"change-case": "^4.1.2",
"commitizen": "^4.2.3",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-elastic-charts": "link:./packages/eslint-plugin-elastic-charts",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-file-header": "^0.0.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^51.0.1",
"html-webpack-plugin": "^4.5.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-matcher-utils": "^29.7.0",
"lerna": "^5.5.2",
"lint-staged": "^10.5.3",
"lodash": "^4.17.15",
"lorem-ipsum": "^2.0.3",
"luxon": "^1.25.0",
"mini-css-extract-plugin": "1.6.2",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"numeral": "^2.0.6",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"postcss-loader": "^4.2.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"react": "^16.13.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.13.0",
"react-is": "^16.13.0",
"sass": "^1.49.9",
"sass-graph": "^3.0.5",
"seedrandom": "^3.0.5",
"semantic-release": "^19.0.3",
"semantic-release-slack-bot": "^3.5.3",
"slugify": "^1.5.0",
"speed-measure-webpack-plugin": "^1.5.0",
"ts-jest": "^29.1.2",
"ts-loader": "8.4.0",
"ts-prune": "^0.10.3",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^4.0.0-next.36",
"typescript": "^5.4.5",
"webpack": "^4.46.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
},
"engines": {
"node": ">=10",
"yarn": ">=1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}