forked from CipherYuvraj/Algorithm-Visualiser-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 975 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 975 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
{
"name": "algorithm-visualizer-platform",
"version": "1.0.0",
"description": "Interactive Algorithm Visualization Platform",
"scripts": {
"install-all": "cd backend && pip install -r requirements.txt && cd ../frontend && npm install",
"build": "cd frontend && npm run build",
"start": "cd backend && python main.py",
"dev": "concurrently \"cd backend && python main.py\" \"cd frontend && npm start\"",
"dev:backend": "cd backend && python main.py",
"dev:frontend": "cd frontend && npm start",
"deploy:build": "npm run build && echo Build completed successfully",
"deploy:vercel": "cd frontend && npx vercel --prod",
"deploy:netlify": "cd frontend && npm run build && npx netlify deploy --prod --dir=build"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"concurrently": "^7.6.0"
},
"keywords": ["algorithm", "visualizer", "education", "react", "fastapi"],
"license": "MIT"
}