-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 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
{
"name": "wrangler-typescript",
"version": "1.0.0",
"description": "Cloudflare worker TypeScript template",
"module": "./dist/index.mjs",
"type": "module",
"scripts": {
"build": "node build.js",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose --coverage --config jest.config.js",
"dev": "miniflare --live-reload --debug"
},
"author": "author",
"license": "MIT OR Apache-2.0",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.28.0",
"esbuild": "^0.15.5",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^27.0.1",
"prettier": "^2.7.1",
"ts-jest": "^27.0.1",
"typescript": "^4.7.3"
},
"dependencies": {
"jest-environment-miniflare": "^2.7.1"
}
}