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