Files

121 lines
3.9 KiB
JSON
Raw Permalink Normal View History

2024-03-20 21:09:47 +03:00
{
"name": "skyvern-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
2024-03-20 21:09:47 +03:00
"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'",
2024-04-01 21:34:52 +03:00
"precommit": "lint-staged",
"artifact-server": "node artifactServer.js",
2024-05-09 20:21:13 +03:00
"run-artifact-server": "node artifactServer.js",
"start-local": "npm run dev & npm run artifact-server",
2024-05-09 20:21:13 +03:00
"serve": "npm run build && node localServer.js",
"test": "vitest run",
2024-05-09 20:21:13 +03:00
"start": "npm run serve & npm run run-artifact-server"
2024-03-20 21:09:47 +03:00
},
"dependencies": {
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@dagrejs/dagre": "^1.1.4",
2024-04-01 21:34:52 +03:00
"@hookform/resolvers": "^3.3.4",
"@microsoft/fetch-event-source": "^2.0.1",
"@novnc/novnc": "1.5.x",
2024-04-01 21:34:52 +03:00
"@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",
2024-03-21 00:07:02 +03:00
"@radix-ui/react-icons": "^1.3.0",
2024-04-01 21:34:52 +03:00
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.1",
2024-04-01 21:34:52 +03:00
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.2.0",
2024-04-01 21:34:52 +03:00
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
2024-03-21 00:07:02 +03:00
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.0.4",
2024-04-01 21:34:52 +03:00
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@radix-ui/react-visually-hidden": "^1.1.0",
2024-04-01 21:34:52 +03:00
"@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",
2024-03-21 00:07:02 +03:00
"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",
2024-04-17 00:15:04 +03:00
"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",
2024-05-09 20:21:13 +03:00
"open": "^10.1.0",
2024-06-07 11:19:36 +03:00
"posthog-js": "^1.138.0",
2025-07-07 22:30:33 -04:00
"re-resizable": "^6.11.2",
2024-03-20 21:09:47 +03:00
"react": "^18.2.0",
2024-03-21 00:07:02 +03:00
"react-dom": "^18.2.0",
2025-07-07 22:30:33 -04:00
"react-draggable": "^4.5.0",
2024-07-10 23:21:30 +03:00
"react-github-btn": "^1.4.0",
2024-04-01 21:34:52 +03:00
"react-hook-form": "^7.51.1",
"react-i18next": "^16.5.4",
"react-router-dom": "^6.30.2",
"serve-handler": "^6.1.6",
2024-03-21 00:07:02 +03:00
"tailwind-merge": "^2.2.2",
2024-04-01 21:34:52 +03:00
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4",
"vaul": "^1.1.1",
"yaml": "^2.4.2",
2024-04-01 21:34:52 +03:00
"zod": "^3.22.4",
"zustand": "^4.5.2"
2024-03-20 21:09:47 +03:00
},
"devDependencies": {
2024-03-21 00:07:02 +03:00
"@types/node": "^20.11.30",
2024-03-20 21:09:47 +03:00
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
2024-07-11 13:35:32 +03:00
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
2024-03-20 21:09:47 +03:00
"@vitejs/plugin-react-swc": "^3.5.0",
2024-03-21 00:07:02 +03:00
"autoprefixer": "^10.4.18",
"eslint": "^8.57.1",
2024-03-20 21:09:47 +03:00
"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",
2024-03-21 00:07:02 +03:00
"postcss": "^8.4.37",
2024-03-20 21:09:47 +03:00
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.17",
2024-07-11 13:35:32 +03:00
"typescript": "^5.5.3",
"vite": "^5.4.21",
"vitest": "^3.2.4"
2024-03-20 21:09:47 +03:00
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
2024-03-21 00:07:02 +03:00
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
2024-03-20 21:09:47 +03:00
}
}