92233f2e90
* Changeset should ignore the example projects * Removed note in Contributing instructions about not adding a changeset for internal * Renamed @trigger.dev/internal to @trigger.dev/core. Set sdk and internal to be ES2020, so we don’t get errors about private identifiers * Env vars in nextjs-example use square bracket syntax to avoid Turbo Repo errors * Set the tsconfigs back for core and sdk * @examples/nextjs compile error with undefined tasks * Set the example projects to use ES2015 to avoid private modifier complaints * package-tester example, which will use built packages * package-tester package.json * Created a readme for the package-tester * Added all the packages to package-tester * Create .env.local.example and readme instructions * Added name to the package.json * Upgraded @types/react and @types/react-dom everywhrre, so we can use server actions * Upgraded @types/react and @types/react-dom everywhrre, so we can use server actions * Reworked the react package build, so it generates separate files * The SDK no longer bundles core * package-tester setup with a server action and react hooks * Added new SDK methods with logging * Working tsup settings for client and server * Explicit react hooks return types * Added all the hooks for testing * Added OpenAI step to the job to check types are still ok in integrations * Get rid of rogue Changeset ignores * Changeset: @trigger.dev/core is now a separate package * Exited prerelease mode, added a changeset * Changed @next to @latest * Deleted seed.js, this shouldn’t be committed * Ignore seed.js * The webapp was importing @trigger.dev/core with a folder path rather package name… * More webapp imports instead of @trigger.dev/core were a folder path * Accidentally edited Stripe internal API url in the comment * Added “sideEffects”: false so @trigger.dev/core is tree shaken by Remix
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "@examples/nextjs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"generate:types": "npx supabase gen types typescript --project-id axtbanoixaztvdntngew --schema public --schema public_2 > src/supabase.types.ts"
|
|
},
|
|
"dependencies": {
|
|
"@trigger.dev/github": "workspace:*",
|
|
"@trigger.dev/nextjs": "workspace:*",
|
|
"@trigger.dev/openai": "workspace:*",
|
|
"@trigger.dev/plain": "workspace:*",
|
|
"@trigger.dev/react": "workspace:*",
|
|
"@trigger.dev/resend": "workspace:*",
|
|
"@trigger.dev/sdk": "workspace:*",
|
|
"@trigger.dev/slack": "workspace:*",
|
|
"@trigger.dev/typeform": "workspace:*",
|
|
"@types/node": "18.15.13",
|
|
"@types/react": "18.2.17",
|
|
"@types/react-dom": "18.2.7",
|
|
"next": "13.3.1",
|
|
"node-fetch": "2.6.x",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-query": "^3.39.3",
|
|
"typescript": "5.0.4",
|
|
"zod": "3.21.4",
|
|
"@trigger.dev/supabase": "workspace:*",
|
|
"@trigger.dev/stripe": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@trigger.dev/cli": "workspace:*",
|
|
"@types/node-fetch": "2.6.x",
|
|
"eslint": "8.42.0",
|
|
"eslint-config-next": "13.4.6",
|
|
"msw": "^0.47.0",
|
|
"ts-loader": "^9.4.2"
|
|
},
|
|
"trigger.dev": {
|
|
"endpointId": "nextjs-example"
|
|
}
|
|
}
|