-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
60
61
{
"name": "skyris",
"version": "1.0.0",
"description": "AI-Powered Flight Planning",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"deploy": "node scripts/deploy.js",
"env:push": "node scripts/push-env-to-vercel.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/20eddibae/skyris.git"
},
"keywords": [
"aviation",
"flight-planning",
"ai"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/20eddibae/skyris/issues"
},
"homepage": "https://github.com/20eddibae/skyris#readme",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@radix-ui/react-select": "^2.2.6",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.91.1",
"@tailwindcss/postcss": "^4.1.18",
"@turf/turf": "^7.3.2",
"@types/geojson": "^7946.0.16",
"@types/mapbox-gl": "^3.4.1",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.4",
"framer-motion": "^12.29.0",
"lucide-react": "^0.563.0",
"mapbox-gl": "^3.18.1",
"next": "^16.1.4",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"devDependencies": {
"vercel": "^32.3.0"
}
}