-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.35 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
{
"name": "hackthe6ix2025",
"version": "1.0.0",
"description": "HackThe6ix 2025 project with MongoDB, Auth0, Gemini API, Flask, and React",
"main": "index.js",
"scripts": {
"install:backend": "cd backend && pip install -r requirements.txt",
"install:frontend": "cd frontend && npm install",
"install:all": "npm run install:backend && npm run install:frontend",
"setup:windows": "powershell -ExecutionPolicy Bypass -File scripts/setup.ps1",
"setup:unix": "bash scripts/setup.sh",
"start:backend": "cd backend && python run.py",
"start:frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"dev:windows": "powershell -ExecutionPolicy Bypass -File scripts/start-dev.ps1",
"build:frontend": "cd frontend && npm run build",
"test:backend": "cd backend && python -m pytest",
"test:frontend": "cd frontend && npm test",
"lint:frontend": "cd frontend && npm run lint",
"clean": "rm -rf frontend/node_modules backend/__pycache__ backend/app/__pycache__"
},
"keywords": [
"hackathon",
"flask",
"react",
"mongodb",
"auth0",
"gemini",
"ai",
"chat"
],
"author": "HackThe6ix Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}