Files
vercel__next.js/examples/inngest/package.json
Joel Hooks 658ffe2e0e examples: inngest example for latest version (#68600)
Co-authored-by: malewis5 <matthew.a.lewis7@gmail.com>
Co-authored-by: Lee Robinson <me@leerob.io>
2024-08-15 10:45:36 -05:00

26 lines
614 B
JSON
Executable File

{
"private": true,
"scripts": {
"dev": "concurrently \"npm:dev:*\"",
"dev:next": "next dev --turbo",
"dev:inngest": "inngest-cli dev --no-discovery -u http://localhost:3000/api/inngest",
"build": "next build",
"start": "next start"
},
"dependencies": {
"inngest": "3.x",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "20.7.0",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.7",
"concurrently": "^8.2.1",
"encoding": "^0.1.13",
"inngest-cli": "latest",
"typescript": "5.5.4"
}
}