60 lines
1.6 KiB
JSON
60 lines
1.6 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 .. && husky skyvern-frontend/.husky",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"tailwind-merge": "^2.2.2",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.30",
|
|
"@types/react": "^18.2.64",
|
|
"@types/react-dom": "^18.2.21",
|
|
"@typescript-eslint/eslint-plugin": "^7.1.1",
|
|
"@typescript-eslint/parser": "^7.1.1",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"autoprefixer": "^10.4.18",
|
|
"eslint": "^8.57.0",
|
|
"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",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "^15.2.2",
|
|
"postcss": "^8.4.37",
|
|
"prettier": "^3.2.5",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.4.2",
|
|
"vite": "^5.1.6"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|