-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.06 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "teawork",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"build-service-worker": "npx esbuild auth-service-worker.ts --bundle --outfile=public/auth-service-worker.js",
"export": "next build && next export",
"deploy:firebase": "firebase deploy",
"deploy:gcp": "docker compose build && gcloud builds submit --tag gcr.io/teaworkapp/teawork-fe --project teaworkapp && gcloud run deploy --image gcr.io/teaworkapp/teawork-fe --project teaworkapp --platform managed",
"deploy:cloudflare": "yarn deploy",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix '**/*.{ts,tsx}'",
"type-check": "tsc --noEmit",
"type-check:firebase": "tsc -p functions --skipLibCheck --noEmit",
"test": "next lint && tsc --noEmit",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@vercel/analytics": "^1.3.1",
"@vis.gl/react-google-maps": "^1.1.0",
"firebase": "^10.13.1",
"mapbox-gl": "^3.6.0",
"next": "14.2.6",
"react": "latest",
"react-dom": "latest",
"server-only": "^0.0.1"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.2",
"@types/mapbox-gl": "^3.4.0",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/server": "^1.0.11",
"autoprefixer": "^10.4.20",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.0.0",
"postcss": "^8.4.41",
"prettier": "3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "5.3.3",
"vercel": "^37.2.1",
"wrangler": "^3.72.3"
}
}