forked from elastic/elastic-charts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.5 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.5 KB
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
{
"name": "@elastic/charts",
"description": "Elastic-Charts data visualization library",
"version": "71.1.2",
"author": "Elastic DataVis",
"license": "SEE LICENSE IN LICENSE.txt",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:elastic/elastic-charts.git",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"scripts": {
"autoprefix:css": "echo 'Autoprefixing...' && yarn postcss dist/*.css --no-map --use autoprefixer -d dist",
"api:check": "yarn build:ts && yarn api:extract",
"api:check:local": "yarn api:check --local",
"api:extract": "yarn api-extractor run -c ./api-extractor.jsonc --verbose",
"build": "yarn build:ts && yarn build:css",
"build:ts": "yarn build:clean && yarn build:compile && yarn build:check",
"build:css": "yarn build:sass && yarn autoprefix:css && yarn concat:sass",
"build:clean": "echo 'Cleaning dist...' && rm -rf ./dist",
"build:compile": "echo 'Compiling...' && tsc -p ./tsconfig.src.json && tsc -p ./tsconfig.nocomments.json",
"build:sass": "echo 'Building sass...' && sass 'src/styles:dist' --style compressed --quiet --color --load-path ../../",
"build:check": "echo 'Type checking dist...' && tsc -p ./tsconfig.check.json",
"build:watch": "echo 'Watching build...' && yarn build:clean && yarn build:css && tsc -p ./tsconfig.src.json -w",
"concat:sass": "echo 'Concat SASS...' && node scripts/concat_sass.js",
"semantic-release": "semantic-release",
"typecheck": "tsc -p ./tsconfig.src.json --noEmit && tsc -p ./tsconfig.nocomments.json --noEmit"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "1.9.7",
"bezier-easing": "^2.1.0",
"chroma-js": "^2.4.2",
"classnames": "^2.2.6",
"d3-array": "^1.2.4",
"d3-cloud": "^1.2.5",
"d3-collection": "^1.0.7",
"d3-interpolate": "^3.0.1",
"d3-scale": "^3.3.0",
"d3-shape": "^2.0.0",
"immer": "^9.0.21",
"prop-types": "^15.7.2",
"re-reselect": "^4.0.1",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"ts-debounce": "^4.0.0",
"utility-types": "^3.10.0",
"uuid": "^14.0.0",
"luxon": "^1.25.0"
},
"peerDependencies": {
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"react": "^16.12 || ^17.0 || ^18.0",
"react-dom": "^16.12 || ^17.0 || ^18.0"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18"
},
"browserslist": [
"last 2 versions",
"ie 11"
]
}