package.json 686 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "vite-playground",
  3. "private": true,
  4. "type": "module",
  5. "scripts": {
  6. "lint": "tsc --noEmit",
  7. "dev": "bun --bun vite ./src --config ./vite.config.ts",
  8. "build": "bun --bun vite build ./src --outDir ../dist --config ./vite.config.ts --emptyOutDir",
  9. "preview": "bun --bun vite preview"
  10. },
  11. "dependencies": {
  12. "@tailwindcss/vite": "workspace:^",
  13. "@vitejs/plugin-react": "^4.3.0",
  14. "react": "^18.3.1",
  15. "react-dom": "^18.3.1",
  16. "tailwindcss": "workspace:^"
  17. },
  18. "devDependencies": {
  19. "@types/react": "^18.3.3",
  20. "@types/react-dom": "^18.3.0",
  21. "bun": "^1.1.10",
  22. "vite": "^5.2.11",
  23. "vite-plugin-handlebars": "^2.0.0"
  24. }
  25. }