forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 7.28 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
{
"name": "@gooddata/sdk-ui-charts",
"version": "10.19.0-alpha.21",
"description": "GoodData.UI SDK - Charts",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-ui-sdk.git",
"directory": "libs/sdk-ui-charts"
},
"author": "GoodData Corporation",
"license": "LicenseRef-LICENSE",
"type": "module",
"browser": "./esm/index.js",
"exports": {
".": "./esm/index.js",
"./styles/css/*": "./styles/css/*",
"./styles/scss/*": "./styles/scss/*",
"./internal-tests/CoreAreaChart": "./esm/charts/areaChart/CoreAreaChart.js",
"./internal-tests/CoreBarChart": "./esm/charts/barChart/CoreBarChart.js",
"./internal-tests/CoreBubbleChart": "./esm/charts/bubbleChart/CoreBubbleChart.js",
"./internal-tests/CoreBulletChart": "./esm/charts/bulletChart/CoreBulletChart.js",
"./internal-tests/CoreColumnChart": "./esm/charts/columnChart/CoreColumnChart.js",
"./internal-tests/CoreComboChart": "./esm/charts/comboChart/CoreComboChart.js",
"./internal-tests/CoreDependencyWheelChart": "./esm/charts/dependencyWheelChart/CoreDependencyWheelChart.js",
"./internal-tests/CoreDonutChart": "./esm/charts/donutChart/CoreDonutChart.js",
"./internal-tests/CoreFunnelChart": "./esm/charts/funnelChart/CoreFunnelChart.js",
"./internal-tests/CoreHeadline": "./esm/charts/headline/CoreHeadline.js",
"./internal-tests/CoreHeatmap": "./esm/charts/heatmap/CoreHeatmap.js",
"./internal-tests/CoreLineChart": "./esm/charts/lineChart/CoreLineChart.js",
"./internal-tests/CorePieChart": "./esm/charts/pieChart/CorePieChart.js",
"./internal-tests/CoreSankeyChart": "./esm/charts/sankeyChart/CoreSankeyChart.js",
"./internal-tests/CoreScatterPlot": "./esm/charts/scatterPlot/CoreScatterPlot.js",
"./internal-tests/CoreTreemap": "./esm/charts/treemap/CoreTreemap.js",
"./internal-tests/CoreXirr": "./esm/charts/xirr/CoreXirr.js",
"./internal-tests/CoreRepeater": "./esm/charts/repeater/CoreRepeater.js"
},
"types": "./esm/index.d.ts",
"sideEffects": [
"*.css",
"*.svg"
],
"files": [
"esm/**/*.js",
"esm/**/*.json",
"esm/**/*.d.ts",
"esm/**/*.map",
"esm/**/*.svg",
"styles",
"NOTICE"
],
"scripts": {
"clean": "rm -rf ci dist esm coverage styles/css *.log tsconfig.tsbuildinfo",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
"build": "bash scripts/build.sh",
"prepack": "cp -f ../../NOTICE ./NOTICE",
"test": "vitest watch",
"test-once": "vitest run",
"test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
"eslint": "eslint -c .eslintrc.cjs src/",
"eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
"eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml -c .eslintrc.cjs src/",
"prettier-check": "prettier --check '{src,stories,styles,__mocks__}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
"prettier-write": "prettier --write '{src,stories,styles,__mocks__}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
"dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
"dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
"stylelint": "stylelint '**/*.scss'",
"stylelint-ci": "stylelint '**/*.scss' --custom-formatter=node_modules/stylelint-checkstyle-formatter > ./ci/results/stylelint-results.xml",
"validate": "npm run dep-cruiser && npm run eslint && npm run stylelint && npm run validate-locales && npm run prettier-check && npm run validate-theming",
"validate-ci": "npm run dep-cruiser-ci && npm run eslint-ci && npm run stylelint-ci && npm run validate-locales-ci && npm run prettier-check && npm run validate-theming",
"validate-locales": "cd ../sdk-ui && npm run validate-locales",
"validate-locales-ci": "cd ../sdk-ui && npm run validate-locales-ci",
"validate-theming": "npm run scss && node scripts/validateCss.js",
"scss": "sass --load-path=node_modules styles/scss:styles/css"
},
"dependencies": {
"@ag-grid-community/all-modules": "27.3.0",
"@ag-grid-community/core": "27.3.0",
"@ag-grid-community/react": "27.3.0",
"@gooddata/number-formatter": "^1.0.6",
"@gooddata/sdk-backend-spi": "workspace:*",
"@gooddata/sdk-model": "workspace:*",
"@gooddata/sdk-ui": "workspace:*",
"@gooddata/sdk-ui-kit": "workspace:*",
"@gooddata/sdk-ui-theme-provider": "workspace:*",
"@gooddata/sdk-ui-vis-commons": "workspace:*",
"@gooddata/util": "workspace:*",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"default-import": "1.1.5",
"highcharts": "9.3.0",
"hoist-non-react-statics": "^3.3.0",
"js-yaml": "^4.1.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.21",
"polished": "^3.6.7",
"highcharts-react-official": "3.2.1",
"react-intl": "^6.4.1",
"react-measure": "^2.5.2",
"ts-invariant": "^0.7.5",
"tslib": "^2.5.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.10.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@gooddata/eslint-config": "^4.1.0",
"@gooddata/reference-workspace": "workspace:*",
"@gooddata/sdk-backend-mockingbird": "workspace:*",
"@gooddata/stylelint-config": "^5.0.0",
"@microsoft/api-documenter": "^7.17.0",
"@microsoft/api-extractor": "^7.36.0",
"@testing-library/react": "^14.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.202",
"@types/node": "^18.17.6",
"@types/raf": "^3.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/react-measure": "^2.0.8",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"concurrently": "^6.0.2",
"dependency-cruiser": "^13.0.3",
"eslint": "^8.25.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import-esm": "^1.2.1",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-regexp": "^1.9.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-tsdoc": "^0.2.14",
"full-icu": "^1.3.0",
"jsdom": "^22.1.0",
"prettier": "~2.5.0",
"raf": "^3.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.52.3",
"stylelint": "^13.8.0",
"stylelint-checkstyle-formatter": "^0.1.2",
"stylelint-config-prettier": "^8.0.2",
"typescript": "5.3.3",
"vitest": "1.0.4",
"vitest-dom": "0.1.1",
"@types/js-yaml": "^4.0.9"
}
}