-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
50
51
52
53
54
55
56
{
"name": "2024.hackthe6ix.com",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:pages": "npx @cloudflare/next-on-pages",
"preview": "npm run build:pages && wrangler pages dev .vercel/output/static",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@material-symbols/font-400": "^0.17.4",
"@next/third-parties": "^14.2.3",
"classnames": "^2.5.1",
"forward-ref-as": "^2.0.0",
"next": "^14.2.3",
"ramda": "^0.30.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.0",
"sharp": "^0.33.3",
"zod": "^3.23.6"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.11.2",
"@cloudflare/workers-types": "^4.20240502.0",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/ramda": "^0.30.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next-on-pages": "^1.11.2",
"eslint-plugin-prettier": "^5.1.3",
"framer-motion": "^11.2.4",
"prettier": "^3.2.5",
"sass": "^1.76.0",
"typescript": "^5",
"vercel": "^34.1.8",
"wrangler": "^3.53.1"
},
"overrides": {
"@next/third-parties": {
"next": "$next"
}
}
}