-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.78 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.78 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
51
52
53
{
"name": "cloudflare-worker-typescript-template",
"version": "1.0.0",
"description": "Cloudflare Worker Typescript Template",
"main": "src/index.ts",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"lint-fix": "eslint -c .eslintrc.js --ext .ts src/ --fix",
"test": "jest",
"build": "webpack --progress --mode production --config ./webpack.prod.js",
"build-dev": "webpack --progress --mode none --config ./webpack.dev.js",
"server": "wrangler dev",
"preview": "wrangler preview",
"publish": "wrangler publish --env=production && ts-node changelog",
"publish-dev": "wrangler publish",
"changelog": "ts-node changelog"
},
"private": true,
"devDependencies": {
"@cloudflare/wrangler": "^1.10.1",
"@types/jest": "^25.2.3",
"@types/node": "^12.12.47",
"@types/node-fetch": "^2.5.7",
"@types/prompt-sync": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@udacity/types-service-worker-mock": "^1.2.0",
"clean-webpack-plugin": "^3.0.0",
"cloudflare-worker-mock": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.5.4",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.1",
"prettier": "^1.19.1",
"prompt-sync": "^4.2.0",
"service-worker-mock": "^2.0.5",
"ts-jest": "^25.5.1",
"ts-loader": "^6.2.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.2",
"types-cloudflare-worker": "^1.2.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}