package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "gooneral-wheelchair",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
  8. "dev:frontend": "vite",
  9. "dev:backend": "cd backend && npm run dev",
  10. "build": "vite build",
  11. "build:backend": "cd backend && npm run build",
  12. "start:backend": "cd backend && npm start",
  13. "lint": "eslint .",
  14. "preview": "vite preview"
  15. },
  16. "dependencies": {
  17. "@digitalocean/do-markdownit": "^1.16.1",
  18. "@tailwindcss/vite": "^4.1.13",
  19. "dompurify": "^3.2.6",
  20. "markdown-it": "^14.1.0",
  21. "markdown-it-abbr": "^2.0.0",
  22. "markdown-it-container": "^4.0.0",
  23. "markdown-it-deflist": "^3.0.0",
  24. "markdown-it-emoji": "^3.0.0",
  25. "markdown-it-footnote": "^4.0.0",
  26. "markdown-it-ins": "^4.0.0",
  27. "markdown-it-mark": "^4.0.0",
  28. "markdown-it-spoiler": "^1.1.1",
  29. "markdown-it-sub": "^2.0.0",
  30. "markdown-it-sup": "^2.0.0",
  31. "marked": "^16.2.1",
  32. "react": "^19.1.1",
  33. "react-dom": "^19.1.1",
  34. "react-router-dom": "^7.9.3"
  35. },
  36. "devDependencies": {
  37. "@eslint/js": "^9.33.0",
  38. "@tailwindcss/cli": "^4.1.13",
  39. "@types/react": "^19.1.10",
  40. "@types/react-dom": "^19.1.7",
  41. "@vitejs/plugin-react": "^5.0.0",
  42. "autoprefixer": "^10.4.21",
  43. "concurrently": "^9.2.1",
  44. "eslint": "^9.33.0",
  45. "eslint-plugin-react-hooks": "^5.2.0",
  46. "eslint-plugin-react-refresh": "^0.4.20",
  47. "globals": "^16.3.0",
  48. "postcss": "^8.5.6",
  49. "tailwindcss": "^4.1.13",
  50. "vite": "^7.1.2"
  51. }
  52. }