forked from gooddata/gooddata-ui-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 5.31 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
{
"name": "@gooddata/sdk-ui-pivot",
"version": "10.18.0-alpha.8",
"description": "GoodData.UI SDK - Pivot Table",
"repository": {
"type": "git",
"url": "https://github.com/gooddata/gooddata-ui-sdk.git",
"directory": "libs/sdk-ui-pivot"
},
"author": "GoodData Corporation",
"license": "MIT",
"type": "module",
"browser": "./esm/index.js",
"exports": {
".": "./esm/index.js",
"./styles/css/*": "./styles/css/*",
"./styles/scss/*": "./styles/scss/*",
"./internal-tests/CorePivotTableAgImpl": "./esm/CorePivotTable.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 tsconfig.tsbuildinfo",
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
"build": "bash scripts/build.sh",
"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 --quiet-deps --load-path=node_modules --load-path=node_modules/fixed-data-table-2/dist 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:*",
"classnames": "^2.3.1",
"fixed-data-table-2": "^1.2.0",
"lodash": "^4.17.21",
"react-intl": "^6.4.1",
"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/lodash": "^4.14.202",
"@types/node": "^18.17.6",
"@types/raf": "^3.4.0",
"@types/react-dom": "^18.2.1",
"@types/react": "^18.2.0",
"@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-hooks": "^4.5.0",
"eslint-plugin-react": "^7.31.10",
"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"
}
}