This repository has been archived by the owner on Feb 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.8 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
27
28
29
30
31
32
{
"name": "tawrestaurant",
"version": "1.0.0",
"description": "MEAN app for the order management of an hypothetical restaurant",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "cd backend/ && npm install && cd - && cd angular-app/TAWRESTaurant/ && npm install && cd - && cd cordova-app/TAWRESTaurantMobile/ && npm install && cd - && cd electron-app/TAWRESTaurantDesktop/ && npm install && cd -",
"mongo": "cd backend/ && npm run mongo && cd -",
"build-web": "cd angular-app/TAWRESTaurant/ && ng build -c production && cd - && cd backend/ && npm run build && cd -",
"populate": "cd backend/ && npm run populate && cd -",
"start-web": "cd backend/ && npm run start && cd -",
"build-android": "cd angular-app/TAWRESTaurant/ && ng build -c cordova && cd - && cd cordova-app/TAWRESTaurantMobile/ && npm run clean-index && npm run build-android && cd -",
"start-android": "cd cordova-app/TAWRESTaurantMobile/ && npm run start-android && cd -",
"build-linux": "cd angular-app/TAWRESTaurant/ && ng build -c electron && cd - && cd electron-app/TAWRESTaurantDesktop/ && npm run clean-index && npm run build-linux && cd -",
"build-win32": "cd angular-app/TAWRESTaurant/ && ng build -c electron && cd - && cd electron-app/TAWRESTaurantDesktop/ && npm run clean-index && npm run build-win32 && cd -",
"start-desktop": "cd electron-app/TAWRESTaurantDesktop/ && npm run start && cd -"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eleumasc/TAWRESTaurant.git"
},
"author": "Battistich, Alvise; Casarin, Samuele",
"license": "ISC",
"bugs": {
"url": "https://github.com/eleumasc/TAWRESTaurant/issues"
},
"homepage": "https://github.com/eleumasc/TAWRESTaurant#readme"
}