forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 5.51 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
{
"name": "@gooddata/sdk-ui-filters",
"version": "9.5.0-alpha.28",
"description": "GoodData.UI SDK - Filter Components",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-ui-sdk.git",
"directory": "libs/sdk-ui-filters"
},
"author": "GoodData Corporation",
"license": "MIT",
"type": "module",
"browser": "./esm/index.js",
"exports": {
".": "./esm/index.js",
"./styles/css/*": "./styles/css/*",
"./internal": "./esm/internal.js"
},
"types": "./esm/index.d.ts",
"sideEffects": [
"*.css",
"*.svg"
],
"files": [
"esm/**/*.js",
"esm/**/*.json",
"esm/**/*.d.ts",
"esm/**/*.map",
"esm/**/*.svg",
"styles"
],
"scripts": {
"clean": "rm -rf ci dist esm coverage *.log styles/css",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
"build": "bash scripts/build.sh && npm run api-extractor",
"build-dev": "bash scripts/build.sh --dev",
"build-esm": "tsc -p tsconfig.build.json",
"build-styles": "bash scripts/build.sh --styles",
"build-incremental": "concurrently \"npm run build-styles\" \"npm run build-esm\"",
"dev": "bash scripts/build.sh --dev-watch",
"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",
"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": "cd ../sdk-ui && npm run validate-locales",
"validate-locales-ci": "cd ../sdk-ui && npm run validate-locales-ci"
},
"dependencies": {
"@gooddata/sdk-backend-spi": "workspace:*",
"@gooddata/sdk-model": "workspace:*",
"@gooddata/sdk-ui": "workspace:*",
"@gooddata/sdk-ui-kit": "workspace:*",
"@gooddata/util": "workspace:*",
"@reduxjs/toolkit": "^1.9.3",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"default-import": "^1.1.5",
"downshift": "^3.4.7",
"fixed-data-table-2": "^1.2.0",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.19",
"moment": "^2.29.4",
"react-day-picker": "^8.7.1",
"react-intl": "^6.4.1",
"react-responsive": "^8.2.0",
"react-window": "^1.8.7",
"redux-saga": "^1.2.3",
"ts-invariant": "^0.7.3",
"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/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.158",
"@types/node": "^18.17.6",
"@types/raf": "^3.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/react-responsive": "^8.0.2",
"@types/react-window": "^1.8.1",
"@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.0.2",
"vitest": "0.31.4",
"vitest-dom": "0.1.0"
}
}