feat: solution for 'Повторный экзамен #2: Сравнительный обзор 3 сущностей (Tavily)'

This commit is contained in:
2026-06-29 17:43:56 +03:00
parent 6d59b9669e
commit 1a87558805
8 changed files with 190 additions and 94 deletions
+22 -13
View File
@@ -1,24 +1,33 @@
{
"name": "tavily-comparison-app",
"name": "comparison-table-app",
"version": "1.0.0",
"private": true,
"description": "React app that compares three entities using Tavily API",
"main": "src/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest"
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@tavily/tavily-api": "^1.0.0",
"axios": "^1.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-table": "^7.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"axios-mock-adapter": "^1.21.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"vite": "^5.0.0"
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}