-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "reading-plan-worker",
"version": "1.0.0",
"description": "Cloudflare worker TypeScript template",
"scripts": {
"dev": "npx wrangler dev",
"publish": "npx wrangler publish",
"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": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"author": "Seth Alexander [email protected]",
"license": "MIT",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "4.20250121.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-miniflare": "^2.14.2",
"miniflare": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "5.7.3",
"wrangler": "^3.22.1"
}
}