forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
149 lines (149 loc) · 6.12 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
{
"name": "@gooddata/sdk-ui-dashboard",
"version": "10.7.0-alpha.5",
"description": "GoodData SDK - Dashboard Component",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-ui-sdk.git",
"directory": "libs/sdk-ui-dashboard"
},
"author": "GoodData Corporation",
"license": "LicenseRef-LICENSE",
"type": "module",
"browser": "./esm/index.js",
"exports": {
".": "./esm/index.js",
"./internal": "./esm/internal.js",
"./styles/css/*": "./styles/css/*",
"./esm/assets/*": "./esm/assets/*"
},
"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 *.log styles/css tsconfig.tsbuildinfo",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l; exit 0) || (api-extractor run)",
"build": "bash scripts/build.sh",
"prepack": "cp -f ../../NOTICE ./NOTICE",
"prepublishOnly": "npm run build",
"test": "vitest --watch",
"test-once": "vitest",
"test-once-with-coverage": "vitest --coverage=true",
"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",
"validate-ci": "npm run dep-cruiser-ci && npm run eslint-ci && npm run stylelint-ci && npm run validate-locales-ci && npm run prettier-check",
"validate-locales": "i18n-toolkit --debug",
"validate-locales-ci": "i18n-toolkit"
},
"dependencies": {
"@gooddata/number-formatter": "^1.0.5",
"@gooddata/sdk-backend-base": "workspace:*",
"@gooddata/sdk-backend-spi": "workspace:*",
"@gooddata/sdk-model": "workspace:*",
"@gooddata/sdk-ui": "workspace:*",
"@gooddata/sdk-ui-ext": "workspace:*",
"@gooddata/sdk-ui-filters": "workspace:*",
"@gooddata/sdk-ui-geo": "workspace:*",
"@gooddata/sdk-ui-kit": "workspace:*",
"@gooddata/sdk-ui-theme-provider": "workspace:*",
"@gooddata/sdk-ui-vis-commons": "workspace:*",
"@gooddata/util": "workspace:*",
"@reduxjs/toolkit": "^1.9.3",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"default-import": "^1.1.5",
"immer": "^9.0.3",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.21",
"lru-cache": "^10.0.1",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-grid-system": "^8.1.4",
"react-intl": "^6.4.1",
"react-lines-ellipsis": "^0.15.0",
"react-measure": "^2.5.2",
"react-redux": "^7.2.4",
"react-select": "^5.7.3",
"react-transition-group": "^4.4.2",
"redux-batched-actions": "^0.5.0",
"redux-saga": "^1.2.3",
"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/i18n-toolkit": "workspace:*",
"@gooddata/reference-workspace": "workspace:*",
"@gooddata/sdk-backend-mockingbird": "workspace:*",
"@microsoft/api-documenter": "^7.17.0",
"@microsoft/api-extractor": "^7.36.0",
"@testing-library/dom": "~9.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.2",
"@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-lines-ellipsis": "^0.15.1",
"@types/react-measure": "^2.0.8",
"@types/react-redux": "^7.1.16",
"@types/react-transition-group": "^4.4.4",
"@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",
"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",
"svgo": "^2.8.0",
"typescript": "5.3.3",
"vitest": "1.0.4",
"vitest-dom": "0.1.1"
}
}