generated from BetaHuhn/cf-worker-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
{
"name": "@betahuhn/cf-worker-starter",
"version": "1.0.61",
"description": "Starter Template for Cloudflare Workers with GitHub Actions CI and Automatic Releases",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/ --ext .ts",
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
"transpile": "tsc --project ./test",
"dev": "wrangler dev",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betahuhn/workers-template.git"
},
"keywords": [
"template",
"workers",
"cloudflare-workers",
"typescript",
"nodejs"
],
"author": "Maximilian Schiller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betahuhn/workers-template/issues"
},
"homepage": "https://github.com/betahuhn/workers-template#readme",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@cloudflare/wrangler": "^1.19.12",
"@types/chai": "^4.3.3",
"@types/mocha": "^8.2.3",
"chai": "^4.3.6",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"service-worker-mock": "^2.0.5",
"ts-loader": "^8.3.0",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@betahuhn/config": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0"
}
}