-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
36
37
{
"name": "dog-ceo-worker",
"version": "0.0.1",
"type": "module",
"module": "./dist/index.mjs",
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.18",
"aws-sdk-client-mock": "^2.0.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.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.2",
"wrangler": "^2.0.7"
},
"private": true,
"scripts": {
"build": "node build.js",
"dev": "miniflare --kv DOGSTUFF --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 --coverage",
"types:check": "tsc && tsc -p test/tsconfig.json",
"deploy": "wrangler publish"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.245.0",
"@medley/router": "^0.2.1"
},
"keywords": [],
"author": "",
"license": "MIT"
}