-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1.18 KB
/
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
30
31
32
33
34
35
{
"private": true,
"name": "workers-queue-demo",
"version": "1.0.0",
"description": "An edge queue service that runs on Cloudflare Workers using Durable Objects and KV",
"type": "module",
"module": "./dist/src/index.mjs",
"scripts": {
"format": "prettier --write '**/*.{js,css,json,md}'",
"build": "npm run types:generate && node build.js",
"dev": "miniflare --live-reload --debug",
"test": "npm run build -- test && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"types:generate": "openapi-typescript schema.yaml --output ./src/schema.ts",
"types:check": "tsc --noEmit && tsc --noEmit -p test/tsconfig.json"
},
"author": "Ryan Marsh <ryan@stochastic.dev>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^3.1.1",
"@types/jest": "^27.0.2",
"esbuild": "^0.13.13",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.3.1",
"jest-environment-miniflare": "^2.0.0-rc.1",
"miniflare": "^2.0.0-next.3",
"openapi-typescript": "^4.4.0",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"dependencies": {
"itty-router": "^2.4.4",
"itty-router-extras": "^0.4.2",
"ulid-workers": "^1.1.0"
}
}