-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 762 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 762 Bytes
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
{
"name": "web-design-contest-api",
"version": "1.0.0",
"description": "API for WebProfessionals.org Web Design & Development Contest",
"type": "module",
"scripts": {
"dev": "wrangler dev app/index.ts",
"deploy": "wrangler deploy dist/index.js",
"build": "tsc"
},
"dependencies": {
"@hono/swagger-ui": "^0.1.0",
"@hono/zod-openapi": "^0.9.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"hono": "^4.7.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.4",
"typescript": "^5.0.0",
"wrangler": "^4.13.0"
}
}