-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.61 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
41
42
{
"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": "node --run test:unit && node --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.20250313.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.22.0",
"@reporters/github": "^1.7.2",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"glob": "^11.0.1",
"globals": "^16.0.0",
"nodejs-latest-linker": "^1.8.0",
"prettier": "^3.5.3",
"terser": "^5.39.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"wrangler": "^4.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"handlebars": "^4.7.8",
"itty-router": "^5.0.18",
"toucan-js": "^4.1.1"
}
}