-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 972 Bytes
/
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
{
"name": "angular-easyrtc-demo",
"version": "1.0.0",
"description": "",
"main": "none",
"scripts": {
"test": "none",
"install": "npm run remove-git && (cd ./angular_app && npm i &) && cd ./server/server_example && npm i",
"remove-git": "rm -rf ./server/server_example/node_modules/*/.git/ && rm -rf ./angular_app/node_modules/*/.git/",
"start": "npm run start-local",
"start-local": "(npm run start-local-server &) && npm run start-ui",
"start-ui": "cd ./angular_app && (ng serve --port=4200 --open &) && ng serve --port=4201 --open",
"start-local-server": "cd ./server/server_example && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/00benallen/angular-easyRTC-demo.git"
},
"author": "Ben Pinhorn",
"license": "ISC",
"bugs": {
"url": "https://github.com/00benallen/angular-easyRTC-demo/issues"
},
"homepage": "https://github.com/00benallen/angular-easyRTC-demo#readme"
}