-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 773 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
{
"name": "fairflow-guardian",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.0.7",
"scripts": {
"dev": "next dev --hostname 0.0.0.0 --port 5174",
"dev:api": "uvicorn fairflow_api.main:app --host 0.0.0.0 --port 8000 --reload",
"dev:all": "node scripts/dev.mjs",
"build": "next build",
"start": "next start --hostname 0.0.0.0 --port 5174",
"test:api": "pytest -q",
"smoke:final": "node scripts/final-smoke.mjs"
},
"dependencies": {
"lucide-react": "^0.468.0",
"next": "^15.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "20.17.6",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"typescript": "^5.7.2"
}
}