nectar/kinode/packages/homepage/ui/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

{
2024-05-10 22:16:26 +03:00
"name": "kinode-homepage-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
2024-07-25 22:21:20 +03:00
"build:copy": "npm run build && rm -rf ../pkg/ui && cp -r dist ../pkg/ui && rm -rf dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
2024-07-26 16:32:31 +03:00
"@hello-pangea/dnd": "^16.6.0",
"classnames": "^2.5.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-icons": "^5.1.0",
"react-router-dom": "^6.23.0",
"unocss": "^0.59.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
2024-07-26 16:32:31 +03:00
}