-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "bitcoinlatte",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"env:local": "rm -f .env && ln -s .env.local .env",
"env:prod": "rm -f .env && ln -s .env.prod .env"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.78.0",
"leaflet": "^1.9.4",
"next": "16.0.1",
"next-pwa": "^5.6.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-leaflet": "^5.0.0",
"sharp": "^0.34.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/leaflet": "^1.9.21",
"@types/next-pwa": "^5.6.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"supabase": "^2.54.11",
"tailwindcss": "^4",
"typescript": "^5"
}
}