-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.32 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.32 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
{
"name": "bridgette",
"version": "1.0.0",
"description": "Bridgette - Financial platform for dataset mapping",
"main": "index.js",
"scripts": {
"dev": "npx http-server frontend -p 3000 -o",
"dev:backend": "cd backend && python app.py",
"dev:frontend": "npx http-server frontend -p 3000 -o",
"start": "npx http-server frontend -p 3001 -o",
"build": "echo 'Static files are ready in frontend folder'",
"test": "echo \"Error: no test specified\" && exit 1",
"install:backend": "cd backend && pip install -r requirements.txt",
"start:full": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"start:production": "cd backend && gunicorn --bind 0.0.0.0:$PORT app:app",
"deploy:render": "echo 'Deploy to Render with: cd backend && gunicorn --bind 0.0.0.0:$PORT app:app'",
"deploy:railway": "echo 'Deploy to Railway with: gunicorn --bind 0.0.0.0:$PORT app:app'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leo-Zh9/bridgette.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Leo-Zh9/bridgette/issues"
},
"homepage": "https://github.com/Leo-Zh9/bridgette#readme",
"dependencies": {
"next": "^15.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"concurrently": "^8.2.2"
}
}