-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
41
42
43
44
45
46
{
"name": "newcomer2023-api",
"version": "0.0.0",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@types/jest": "^29.4.0",
"@types/luxon": "^3.2.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"better-sqlite3": "^8.1.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.4.2",
"jest-environment-miniflare": "^2.11.0",
"npm-run-all": "^4.1.5",
"openapi-typescript": "^6.1.0",
"openapi-zod": "^0.1.16",
"prettier": "^2.8.4",
"typescript": "^4.9.4",
"wrangler": "2.6.2"
},
"private": true,
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler publish",
"schema": "npx openapi-zod api-spec.yml --output src/schema.ts",
"prepare": "husky install",
"lint:eslint": "eslint ./src/**/*.{ts,tsx}",
"test:jest": "jest",
"test:lint": "npm run lint",
"lint": "run-p lint:*",
"test": "run-p test:*"
},
"dependencies": {
"hono": "^3.0.1",
"@tsndr/cloudflare-worker-jwt": "^2.2.1",
"luxon": "^3.2.1",
"uuid": "^9.0.0",
"zod": "^3.20.6"
}
}