You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
725 B
26 lines
725 B
{ |
|
"name": "with-nextjs", |
|
"version": "0.1.0", |
|
"private": true, |
|
"scripts": { |
|
"build:packages": "yarn --cwd ../../ build:packages", |
|
"build:workspace": "yarn build:packages && 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" |
|
} |
|
}
|
|
|