-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
{
"name": "@cascadiacollections/podr-service",
"version": "1.0.0",
"description": "The RESTful API for https://www.podrapp.com/",
"main": "dist/worker.js",
"type": "module",
"scripts": {
"build": "wrangler deploy --dry-run --outdir=dist",
"lint": "eslint ./src ./__tests__",
"lint:fix": "eslint ./src ./__tests__ --fix",
"format": "prettier --write \"**/*.{js,ts,json,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md}\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"dev": "wrangler dev",
"deploy": "wrangler deploy"
},
"author": "Kevin T. Coughlin",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "4.20260305.0",
"@eslint/js": "^9.39.2",
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "30.2.0",
"openapi-types": "^12.1.3",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@cloudflare/containers": "^0.1.1",
"wrangler": "^4.69.0"
},
"packageManager": "yarn@4.10.3",
"resolutions": {
"glob": "^10.5.0",
"js-yaml": "^4.1.1"
}
}