forked from cloudflare/miniflare-typescript-esbuild-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 938 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
30
{
"name": "miniflare-typescript-esbuild-jest",
"version": "1.0.0",
"description": "Example project using Miniflare, TypeScript, esbuild and Jest",
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "node build.js",
"dev": "miniflare --live-reload --debug --modules dist/index.mjs",
"dev:remote": "wrangler dev",
"test": "npm run build && node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"types:check": "tsc && tsc -p test/tsconfig.json",
"deploy": "wrangler publish"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@types/jest": "^27.5.1",
"esbuild": "^0.14.41",
"jest": "^28.1.0",
"jest-environment-miniflare": "^2.5.0",
"miniflare": "^2.5.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2",
"wrangler": "^2.0.7"
}
}