-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
180 lines (180 loc) · 6.22 KB
/
package.json
File metadata and controls
180 lines (180 loc) · 6.22 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "ydb-embedded-ui",
"version": "14.9.2",
"files": [
"dist"
],
"main": "dist/lib.js",
"engines": {
"node": ">=22.0",
"npm": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:ydb-platform/ydb-embedded-ui.git"
},
"dependencies": {
"@bem-react/classname": "^1.6.0",
"@ebay/nice-modal-react": "^1.2.13",
"@gravity-ui/axios-wrapper": "^1.5.1",
"@gravity-ui/chartkit": "^7.1.0",
"@gravity-ui/components": "^4.18.0",
"@gravity-ui/date-components": "^3.2.3",
"@gravity-ui/date-utils": "^2.5.6",
"@gravity-ui/i18n": "^1.7.0",
"@gravity-ui/icons": "^2.17.0",
"@gravity-ui/illustrations": "^2.1.0",
"@gravity-ui/navigation": "^3.11.0",
"@gravity-ui/paranoid": "^3.0.0",
"@gravity-ui/react-data-table": "^2.2.1",
"@gravity-ui/react-unipika": "^0.5.1",
"@gravity-ui/table": "^1.10.1",
"@gravity-ui/uikit": "^7.31.1",
"@gravity-ui/unipika": "^5.2.1",
"@gravity-ui/websql-autocomplete": "^13.14.0",
"@hookform/resolvers": "^3.10.0",
"@mjackson/multipart-parser": "^0.8.2",
"@reduxjs/toolkit": "^2.8.2",
"@tanstack/react-table": "^8.20.6",
"@ydb-platform/monaco-ghost": "^0.6.1",
"axios": "^1.8.4",
"axios-retry": "^4.5.0",
"colord": "^2.9.3",
"copy-to-clipboard": "^3.3.3",
"crc-32": "^1.2.2",
"history": "^4.10.1",
"hotkeys-js": "^3.13.9",
"lodash": "^4.17.21",
"monaco-editor": "^0.52.2",
"numeral": "^2.0.6",
"path-to-regexp": "^3.3.0",
"qrcode": "^1.5.4",
"qs": "^6.13.1",
"react-error-boundary": "^4.1.2",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.54.2",
"react-monaco-editor": "^0.56.2",
"react-redux": "^9.2.0",
"react-router-dom": "^5.3.4",
"react-split": "^2.0.14",
"redux": "^5.0.1",
"redux-location-state": "^2.8.2",
"shiki": "^3.14.0",
"tslib": "^2.8.1",
"use-query-params": "^2.2.1",
"uuid": "^10.0.0",
"web-vitals": "^1.1.2",
"ydb-ui-components": "^5.4.0",
"zod": "^3.24.1"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "rsbuild dev",
"dev": "DISABLE_ESLINT_PLUGIN=true TSC_COMPILE_ON_ERROR=true REACT_APP_BACKEND=http://localhost:8765 REACT_APP_META_BACKEND=undefined npm start",
"build": "rm -rf build && DISABLE_ESLINT_PLUGIN=true CI=true rsbuild build",
"build:embedded": "GENERATE_SOURCEMAP=false REACT_APP_BACKEND=http://localhost:8765 REACT_APP_META_BACKEND=undefined npm run build",
"build:embedded-mc": "GENERATE_SOURCEMAP=false REACT_APP_BACKEND= REACT_APP_META_BACKEND= npm run build",
"build:embedded:archive": "npm run build:embedded && mv build embedded-ui && cp CHANGELOG.md embedded-ui/CHANGELOG.md && zip -r embedded-ui.zip embedded-ui && rm -rf embedded-ui",
"lint": "run-p lint:*",
"lint:js": "eslint .",
"lint:styles": "stylelint 'src/**/*.{css,scss}'",
"lint:other": "npm run prettier -- --check",
"prettier": "prettier '**/*.{json,yaml,yml,md}'",
"unused": "npx knip --include dependencies,files,exports,types",
"package": "rm -rf dist && tsc -p tsconfig.package.json && copyfiles -u 1 'src/**/*.{css,scss,svg}' dist",
"test": "jest",
"prepublishOnly": "npm run package",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"test:e2e:install": "npx playwright install --with-deps",
"test:e2e": "npx playwright test --config=playwright.config.ts",
"test:e2e:update-snapshots": "npx playwright test --config=playwright.config.ts --update-snapshots",
"test:e2e:local": "PLAYWRIGHT_BASE_URL=http://localhost:3000/ npm run test:e2e",
"test:e2e:docker": "bash scripts/playwright-docker.sh",
"test:e2e:docker:update-snapshots": "bash scripts/playwright-docker.sh --update-snapshots"
},
"lint-staged": {
"*.{scss, css}": [
"stylelint --fix --quiet"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.{json,yaml,yml,md}": [
"prettier --write"
]
},
"browserslist": [
"extends @gravity-ui/browserslist-config"
],
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@gravity-ui/browserslist-config": "^4.3.0",
"@gravity-ui/eslint-config": "^4.1.0",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/stylelint-config": "^5.0.0",
"@gravity-ui/tsconfig": "^1.0.0",
"@playwright/test": "^1.58.0",
"@rsbuild/core": "^1.6.9",
"@rsbuild/plugin-react": "^1.4.2",
"@rsbuild/plugin-sass": "^1.4.0",
"@rsbuild/plugin-svgr": "^1.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.14",
"@types/numeral": "^2.0.5",
"@types/qrcode": "^1.5.5",
"@types/qs": "^6.9.18",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.34.1",
"babel-jest": "^30.2.0",
"copyfiles": "^2.4.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.2.0",
"http-proxy-middleware": "^2.0.7",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-transform-css": "^6.0.2",
"lint-staged": "^15.3.0",
"mini-css-extract-plugin": "^2.9.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"monaco-yql-languages": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.1",
"prettier": "^3.5.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.83.4",
"source-map-explorer": "^2.5.3",
"stylelint": "^16.20.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"peerDependencies": {
"monaco-yql-languages": ">=2.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"overrides": {
"fork-ts-checker-webpack-plugin": "^9.0.2",
"react": "$react",
"react-dom": "$react-dom",
"redux": "$redux",
"typescript": "$typescript",
"monaco-editor": "$monaco-editor",
"canvas": "^2.11.2"
}
}