-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 994 Bytes
/
package.json
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
26
27
28
29
{
"name": "inngest-squiggle-conf-workshop",
"version": "1.0.0",
"description": "Companion for the Squiggle conference 2024 workshop",
"main": "index.js",
"scripts": {
"start:queue": "tsx ./queue/index.ts",
"dev:worker": "tsx --watch ./01-worker/index.ts",
"dev:durable-worker": "tsx --watch ./02-durable-worker/index.ts",
"dev:inngest": "tsx --watch ./03-inngest/index.ts",
"start:worker": "npm run start:queue & npm run dev:worker",
"start:durable-worker": "npm run start:queue & npm run dev:durable-worker",
"start:inngest": "npx inngest-cli dev -u http://localhost:3000/api/inngest --no-discovery & npm run dev:inngest",
"send": "tsx ./scripts/send.ts",
"send:inngest": "tsx ./scripts/sendInngest.ts"
},
"dependencies": {
"fastify": "^5.0.0",
"inngest": "^3.22.13"
},
"devDependencies": {
"@types/node": "^22.7.4",
"inngest-cli": "^1.1.0",
"tsx": "^4.19.1"
},
"keywords": [],
"author": "",
"license": "MIT"
}