mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-21 01:15:35 +00:00
Had to create a new PR since after the 5.0 merge, #5818 was throwing errors. ## Examples Added - **React Router v7** - Uppy Dashboard with Tus, XHR, and Transloadit , tus server implemented using react-router/express adapter , rest using regular resource routes - This still doesn't have hot reloading in the dev server though , can be added through nodemon - **Next.js** - Uppy Dashboard with Tus, XHR, and Transloadit - **Angular** - Uppy Dashboard and Dashboard Modal with Tus
31 lines
760 B
JSON
31 lines
760 B
JSON
{
|
|
"name": "example-nextjs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build --turbopack",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@tus/file-store": "latest",
|
|
"@tus/server": "latest",
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/react": "workspace:*",
|
|
"@uppy/transloadit": "workspace:*",
|
|
"@uppy/tus": "workspace:*",
|
|
"@uppy/xhr-upload": "workspace:*",
|
|
"next": "15.5.2",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|