twittok/ui/package.json

38 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2024-10-22 13:27:48 +00:00
{
"name": "ui-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"copy": "mkdir -p ../pkg/ui && rm -rf ../pkg/ui/* && cp -r dist/* ../pkg/ui/",
"build:copy": "npm run build && npm run copy",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@kinode/client-api": "^0.1.0",
"@tanstack/react-query": "^5.50.1",
"hls.js": "^1.5.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-swipeable": "^7.0.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"http-proxy-middleware": "^2.0.6",
"typescript": "^5.6.3",
"vite": "^5.3.1"
}
}