Skip to content

Commit ee723cd

Browse files
authored
fix: add absent deps, update axios (#756)
1 parent fa98a22 commit ee723cd

File tree

3 files changed

+52
-82
lines changed

3 files changed

+52
-82
lines changed

package-lock.json

Lines changed: 43 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "[email protected]:ydb-platform/ydb-embedded-ui.git"
1111
},
1212
"dependencies": {
13-
"@gravity-ui/axios-wrapper": "^1.3.0",
13+
"@gravity-ui/axios-wrapper": "^1.4.1",
1414
"@gravity-ui/chartkit": "^4.20.1",
1515
"@gravity-ui/components": "^2.12.0",
1616
"@gravity-ui/date-utils": "^1.4.2",
@@ -21,7 +21,7 @@
2121
"@gravity-ui/react-data-table": "^1.2.0",
2222
"@gravity-ui/uikit": "^5.30.1",
2323
"@reduxjs/toolkit": "^2.2.1",
24-
"axios": "^0.21.2",
24+
"axios": "^1.6.7",
2525
"bem-cn-lite": "^4.1.0",
2626
"copy-to-clipboard": "^3.3.3",
2727
"crc-32": "^1.2.2",
@@ -42,6 +42,7 @@
4242
"react-split": "^2.0.14",
4343
"redux": "^5.0.1",
4444
"redux-location-state": "^2.8.2",
45+
"tslib": "^2.6.2",
4546
"url": "^0.11.0",
4647
"use-query-params": "^2.2.1",
4748
"web-vitals": "^1.1.2",
@@ -98,7 +99,8 @@
9899
],
99100
"testEnvironment": "jsdom",
100101
"moduleNameMapper": {
101-
"\\.(css|less|scss|sass)$": "jest-transform-css"
102+
"\\.(css|less|scss|sass)$": "jest-transform-css",
103+
"^axios$": "axios/dist/node/axios.cjs"
102104
}
103105
},
104106
"browserslist": {
@@ -140,6 +142,7 @@
140142
"npm-run-all": "^4.1.5",
141143
"postcss": "^8.4.6",
142144
"prettier": "^2.5.1",
145+
"prop-types": "^15.8.1",
143146
"react": "^17.0.2",
144147
"react-app-rewired": "^2.1.11",
145148
"react-dom": "^17.0.2",
@@ -150,6 +153,7 @@
150153
"typescript": "^4.5.5"
151154
},
152155
"peerDependencies": {
156+
"prop-types": "^15.8.1",
153157
"react": "^17.0.2",
154158
"react-dom": "^17.0.2"
155159
},

tsconfig.package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"compilerOptions": {
44
"outDir": "dist",
55
"declaration": true,
6-
"noEmit": false
6+
"noEmit": false,
7+
"importHelpers": true
78
},
89
"exclude": ["src/setup*", "src/index.tsx", "**/__tests__", "**/tests"]
910
}

0 commit comments

Comments
 (0)