-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 857 Bytes
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
{
"name": "gcs-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"dev:3001": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"css": "npx tailwindcss -i ./src/styles/globals.css -o ./public/styles.css --watch",
"fix-paths": "node scripts/fix-paths.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.21.0",
"i18next": "^22.4.15",
"leaflet": "^1.9.3",
"next": "^13.5.11",
"next-i18next": "^13.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.2",
"react-leaflet": "^4.2.1",
"react-query": "^3.39.3"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.2"
}
}