-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 886 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 886 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
{
"name": "flexlink",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "echo \"No React tests configured yet\"",
"lint": "echo \"No linting configured yet\"",
"type-check": "tsc --noEmit",
"start:backend": "cd backend && python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000",
"start:full": "concurrently \"npm run start:backend\" \"npm run dev\""
},
"dependencies": {
"@google/genai": "^1.8.0",
"amadeus": "^11.0.0",
"axios": "^1.10.0",
"dotenv": "^17.2.0",
"framer-motion": "^12.23.6",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"typescript": "~5.7.2",
"vite": "^6.2.0"
}
}