-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.15 KB
/
package.json
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
{
"name": "pf_la_aldeana",
"description": "Proyecto final de la carrera de grado perteneciente a estudiantes de Ingeniería en Sistemas de Información de la Universidad Tecnológica Nacional Facultad Regional Córdoba. 2021",
"engines": {
"node": "14.17.0"
},
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5"
},
"scripts": {
"start-web": "(cd web_client && npm install) && (cd ../server && npm install) && (cd .. && concurrently \"npm run web_server\" \"npm run web_client\")",
"start-desktop": "(cd desktop_client && npm install) && (cd ../server && npm install) && (cd .. && concurrently \"npm run web_server\" \"npm run desktop_client\")",
"web_server": "nodemon server/bin/www",
"desktop_client": "node start_desktop_client.js",
"web_client": "node start_web_client.js",
"server": "cd server && npm install && cd .. && node server/bin/www",
"test": "(cd server && npm install && npm-run-all -p -r start testDelay)",
"heroku-postbuild": "cd web_client && npm install && npm run build"
},
"cacheDirectories": [
"web_client/node_modules"
],
"dependencies": {}
}