Files
goodgarden/package.json
2024-03-15 20:25:45 +01:00

26 lines
595 B
JSON

{
"name": "goodgarden",
"description": "",
"main": "app.js",
"scripts": {
"start": "npm-run-all --parallel start-flask start-electron",
"start-electron": "wait-on http://localhost:5000 && electron app.js",
"start-flask": "python app.py"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^23.3.13",
"npm-run-all": "^4.1.5",
"wait-on": "^7.2.0"
},
"dependencies": {
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"express": "^4.18.3",
"mysql2": "^3.9.1",
"python-shell": "^5.0.0"
}
}