-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "builders-room",
"version": "1.0.0",
"description": "Boulder Startup Week Builders' Room Website",
"scripts": {
"dev": "next dev",
"dev:cf": "wrangler pages dev --port 3000 --compatibility-date=2023-05-18",
"build": "next build",
"build:cf": "npm run build && npm run export",
"export": "next export",
"start": "next start",
"lint": "next lint",
"deploy": "wrangler pages publish out --branch=main",
"deploy:preview": "wrangler pages publish out --branch=preview"
},
"keywords": [
"hackathon",
"boulder",
"startup week"
],
"author": "Boulder.codes",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.49.4",
"autoprefixer": "^10.4.14",
"dotenv": "^16.5.0",
"next": "^13.4.12",
"node-fetch": "^3.3.2",
"pg": "^8.15.6",
"postcss": "^8.4.27",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"resend": "^4.5.1",
"tailwindcss": "^3.3.0"
},
"devDependencies": {
"@cloudflare/kv-asset-handler": "^0.3.0",
"ignore-loader": "^0.1.2",
"wrangler": "^3.18.0"
},
"engines": {
"node": ">=18.17.0"
}
}