package.json 699 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "with-nextjs",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "build:workspace": "yarn workspace @excalidraw/excalidraw run build:esm && yarn copy:assets",
  7. "copy:assets": "cp -r ../../packages/excalidraw/dist/prod/fonts ./public",
  8. "dev": "yarn build:workspace && next dev -p 3005",
  9. "build": "yarn build:workspace && next build",
  10. "start": "next start -p 3006",
  11. "lint": "next lint"
  12. },
  13. "dependencies": {
  14. "next": "14.1",
  15. "react": "19.0.0",
  16. "react-dom": "19.0.0"
  17. },
  18. "devDependencies": {
  19. "@types/node": "^20",
  20. "@types/react": "19.0.10",
  21. "@types/react-dom": "19.0.4",
  22. "path2d-polyfill": "2.0.1",
  23. "typescript": "^5"
  24. }
  25. }