-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.54 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
38
39
40
{
"name": "release-cloudflare-worker",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "wrangler dev --remote",
"format": "prettier --check --write \"**/*.{ts,js,mjs,json,md}\"",
"prettier": "prettier --check \"**/*.{ts,js,mjs,json,md}\"",
"lint": "eslint ./src",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout --import=tsx ./tests/unit/index.test.ts",
"test:e2e": "wrangler deploy --dry-run --outdir=dist && node --test --test-reporter=@reporters/github --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout --import=tsx ./tests/e2e/index.test.ts",
"build:handlebars": "node scripts/compile-handlebars.js"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241216.0",
"@reporters/github": "^1.7.2",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"nodejs-latest-linker": "^1.8.0",
"prettier": "^3.4.2",
"terser": "^5.37.0",
"tsx": "^4.7.2",
"typescript": "^5.7.2",
"wrangler": "^3.92.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"handlebars": "^4.7.8",
"itty-router": "^5.0.18",
"toucan-js": "^4.0.0",
"zod": "^3.22.3"
}
}