-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 KB
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
{
"name": "worker-typescript-template",
"version": "1.0.0",
"description": "Cloudflare worker TypeScript template",
"module": "./dist/worker.mjs",
"scripts": {
"build": "node build.mjs",
"dev": "npx wrangler dev"
},
"author": "author",
"license": "MIT OR Apache-2.0",
"eslintConfig": {
"root": true,
"ecmaVersion": 2015,
"parserOptions": {
"sourceType": "module"
},
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/d1": "^1.4.1",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@cloudflare/workers-types": "^3.0.0",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@miniflare/storage-redis": "2.6.0-d1.1",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"esbuild": "^0.12.15",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"joi": "^17.6.0",
"miniflare": "2.6.0-d1.1",
"pm2": "^5.2.0",
"service-worker-mock": "^2.0.5",
"slonik-sql-tag-raw": "^1.1.4",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"wrangler": "d1",
"model-one": "../model-one"
},
"dependencies": {
"itty-router": "^2.6.1"
}
}