Some checks failed
Run tests and pre-commit / Run tests and pre-commit hooks (push) Has been cancelled
Run tests and pre-commit / Frontend Lint and Build (push) Has been cancelled
Publish Fern Docs / run (push) Has been cancelled
Update OpenAPI Specification / update-openapi (push) Has been cancelled
- Implemented full Russian translation (ru) for 8 major pages - Added LanguageSwitcher component with language detection - Translated: Navigation, Settings, Workflows, Credentials, Banner, Examples - Fixed API endpoint path: changed to use sans-api-v1 client for /v1/ endpoints - Fixed CORS: added http://localhost:8081 to ALLOWED_ORIGINS - Added locales infrastructure with i18next and react-i18next - Created bilingual JSON files (en/ru) for 4 namespaces - 220+ translation keys implemented - Backend CORS configuration updated in .env - Documentation: I18N implementation guides and installation docs
121 lines
3.9 KiB
JSON
121 lines
3.9 KiB
JSON
{
|
|
"name": "skyvern-frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc --noEmit && vite build",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"format": "prettier --write .",
|
|
"preview": "vite preview",
|
|
"prepare": "cd .. && command -v pre-commit >/dev/null 2>&1 && pre-commit install || echo 'pre-commit not installed, skipping hook setup'",
|
|
"precommit": "lint-staged",
|
|
"artifact-server": "node artifactServer.js",
|
|
"run-artifact-server": "node artifactServer.js",
|
|
"start-local": "npm run dev & npm run artifact-server",
|
|
"serve": "npm run build && node localServer.js",
|
|
"test": "vitest run",
|
|
"start": "npm run serve & npm run run-artifact-server"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/lang-html": "^6.4.9",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-python": "^6.1.6",
|
|
"@dagrejs/dagre": "^1.1.4",
|
|
"@hookform/resolvers": "^3.3.4",
|
|
"@microsoft/fetch-event-source": "^2.0.1",
|
|
"@novnc/novnc": "1.5.x",
|
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
"@radix-ui/react-checkbox": "^1.1.1",
|
|
"@radix-ui/react-collapsible": "^1.1.1",
|
|
"@radix-ui/react-dialog": "^1.1.2",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
"@radix-ui/react-popover": "^1.1.1",
|
|
"@radix-ui/react-radio-group": "^1.1.3",
|
|
"@radix-ui/react-scroll-area": "^1.2.0",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@radix-ui/react-separator": "^1.0.3",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@radix-ui/react-switch": "^1.1.0",
|
|
"@radix-ui/react-tabs": "^1.0.4",
|
|
"@radix-ui/react-toast": "^1.1.5",
|
|
"@radix-ui/react-tooltip": "^1.0.7",
|
|
"@radix-ui/react-visually-hidden": "^1.1.0",
|
|
"@tanstack/react-query": "^5.28.6",
|
|
"@uiw/codemirror-theme-tokyo-night-storm": "^4.23.0",
|
|
"@uiw/react-codemirror": "^4.23.0",
|
|
"@xyflow/react": "^12.1.1",
|
|
"axios": "^1.8.2",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.0",
|
|
"cmdk": "^1.0.0",
|
|
"cors": "^2.8.5",
|
|
"country-state-city": "^3.2.1",
|
|
"cross-spawn": "^7.0.6",
|
|
"embla-carousel-react": "^8.0.0",
|
|
"express": "^4.21.2",
|
|
"fetch-to-curl": "^0.6.0",
|
|
"i18next": "^25.8.13",
|
|
"i18next-browser-languagedetector": "^8.2.1",
|
|
"i18next-http-backend": "^3.0.2",
|
|
"nanoid": "^5.0.7",
|
|
"open": "^10.1.0",
|
|
"posthog-js": "^1.138.0",
|
|
"re-resizable": "^6.11.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-draggable": "^4.5.0",
|
|
"react-github-btn": "^1.4.0",
|
|
"react-hook-form": "^7.51.1",
|
|
"react-i18next": "^16.5.4",
|
|
"react-router-dom": "^6.30.2",
|
|
"serve-handler": "^6.1.6",
|
|
"tailwind-merge": "^2.2.2",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"use-debounce": "^10.0.4",
|
|
"vaul": "^1.1.1",
|
|
"yaml": "^2.4.2",
|
|
"zod": "^3.22.4",
|
|
"zustand": "^4.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.30",
|
|
"@types/react": "^18.2.64",
|
|
"@types/react-dom": "^18.2.21",
|
|
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
"@typescript-eslint/parser": "^7.16.0",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"autoprefixer": "^10.4.18",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"lint-staged": "^15.5.2",
|
|
"postcss": "^8.4.37",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-tailwindcss": "^0.6.5",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^5.4.21",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,ts,tsx}": [
|
|
"npm run lint"
|
|
],
|
|
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"overrides": {
|
|
"vite": {
|
|
"rollup": "npm:@rollup/wasm-node"
|
|
}
|
|
}
|
|
}
|