package.json 725 B

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