-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
47
48
49
{
"name": "ramos-uc-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "node --run lint:fix && node --run pages:build && wrangler pages dev",
"deploy": "node --run lint:fix && node --run pages:build && wrangler pages deploy"
},
"dependencies": {
"@hono/zod-openapi": "^0.18.4",
"hono": "^4.7.0",
"lucide-react": "^0.468.0",
"next": "^15.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.7",
"@types/node": "^20",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-unused-imports": "^4.1.4",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.17",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3"
},
"description": "",
"main": "index.js",
"author": "",
"license": "ISC"
}