forked from willin/cloudflare-pageviews-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 954 Bytes
/
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
{
"name": "cloudflare-pageviews-worker",
"version": "1.0.0",
"description": "Cloudflare worker TypeScript template",
"main": "dist/worker.js",
"scripts": {
"build": "webpack",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}'"
},
"author": "Willin Wang",
"license": "Apache-2.0",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^3.3.0",
"@types/service-worker-mock": "^2.0.1",
"@willin/eslint-config": "^0.0.6",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.5.1",
"service-worker-mock": "^2.0.5",
"ts-loader": "^9.2.2",
"typescript": "^4.5.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"worktop": "^0.7.3"
}
}