forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 6.64 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
{
"name": "@gooddata/sdk-ui-dashboard",
"version": "8.12.0-alpha.127",
"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",
"main": "dist/index.js",
"module": "esm/index.js",
"es2015": "esm/index.js",
"browser": "dist/index.js",
"typings": "esm/index.d.ts",
"sideEffects": [
"*.css",
"*.svg"
],
"files": [
"dist/**/*.js",
"dist/**/*.json",
"dist/**/*.d.ts",
"dist/**/*.map",
"dist/**/*.svg",
"esm/**/*.js",
"esm/**/*.json",
"esm/**/*.d.ts",
"esm/**/*.map",
"esm/**/*.svg",
"styles",
"NOTICE"
],
"config": {
"eslint": "-c .eslintrc.js --ext ts,tsx src/"
},
"scripts": {
"clean": "rm -rf ci dist esm coverage *.log styles/css && jest --clearCache",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l; exit 0) || (api-extractor run)",
"build": "bash scripts/build.sh && npm run api-extractor",
"build-dev": "bash scripts/build.sh --dev",
"build-cjs": "tsc -p tsconfig.build.json",
"build-esm": "tsc -p tsconfig.build.esm.json",
"build-styles": "bash scripts/build.sh --styles",
"dev": "bash scripts/build.sh --dev-watch",
"prepack": "cp -f ../../NOTICE ./NOTICE",
"prepublishOnly": "npm run build",
"test": "jest --watch",
"test-once": "jest --maxWorkers=${JEST_MAX_WORKERS:-'45%'}",
"test-once-with-coverage": "jest --coverage=true",
"test-ci": "JEST_JUNIT_OUTPUT=./ci/results/test-results.xml jest --ci --config jest.ci.js",
"eslint": "eslint $npm_package_config_eslint",
"eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml $npm_package_config_eslint",
"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.js --output-type err-long src/",
"dep-cruiser-ci": "depcruise --validate .dependency-cruiser.js --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/numberjs": "^4.0.3",
"@gooddata/sdk-backend-base": "^8.12.0-alpha.127",
"@gooddata/sdk-backend-spi": "^8.12.0-alpha.127",
"@gooddata/sdk-model": "^8.12.0-alpha.127",
"@gooddata/sdk-ui": "^8.12.0-alpha.127",
"@gooddata/sdk-ui-ext": "^8.12.0-alpha.127",
"@gooddata/sdk-ui-filters": "^8.12.0-alpha.127",
"@gooddata/sdk-ui-kit": "^8.12.0-alpha.127",
"@gooddata/sdk-ui-theme-provider": "^8.12.0-alpha.127",
"@gooddata/sdk-ui-vis-commons": "^8.12.0-alpha.127",
"@gooddata/sdk-ui-geo": "^8.12.0-alpha.127",
"@gooddata/util": "^8.12.0-alpha.127",
"@reduxjs/toolkit": ">=1.5.1 <1.8.0",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"immer": "^9.0.3",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.19",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-grid-system": "^8.1.4",
"react-intl": "^5.23.0",
"react-lines-ellipsis": "^0.15.0",
"react-measure": "^2.3.0",
"react-redux": "^7.2.4",
"react-select": "^5.3.0",
"react-transition-group": "^4.4.2",
"redux-batched-actions": "^0.5.0",
"redux-saga": "^1.1.3",
"ts-invariant": "^0.7.3",
"tslib": "^2.0.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": "^16.10.0 || ^17.0.0",
"react-dom": "^16.10.0 || ^17.0.0"
},
"devDependencies": {
"@gooddata/i18n-toolkit": "^8.12.0-alpha.127",
"@gooddata/eslint-config": "^4.1.0",
"@gooddata/reference-workspace": "^8.12.0-alpha.127",
"@gooddata/sdk-backend-mockingbird": "^8.12.0-alpha.127",
"@microsoft/api-documenter": "^7.17.0",
"@microsoft/api-extractor": "^7.20.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.2",
"@types/enzyme": "^3.10.3",
"@types/jest": "^27.0.1",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.158",
"@types/raf": "^3.4.0",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-lines-ellipsis": "^0.15.1",
"@types/react-measure": "2.0.5",
"@types/react-redux": "^7.1.16",
"@types/react-transition-group": "^4.4.4",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"concurrently": "^6.0.2",
"dependency-cruiser": "^10.1.1",
"enzyme": "^3.10.0",
"eslint": "^8.25.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"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",
"jest": "^27.5.1",
"jest-enzyme": "^7.1.2",
"jest-junit": "^3.0.0",
"prettier": "~2.5.0",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.52.3",
"stylelint": "^13.8.0",
"stylelint-checkstyle-formatter": "^0.1.2",
"stylelint-config-prettier": "^8.0.2",
"svgo": "^2.8.0",
"ts-jest": "^27.0.5",
"typescript": "4.0.2"
}
}