forked from SmartTokenLabs/token-negotiator-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 2.62 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
33
34
35
36
37
38
39
40
41
{
"name": "examples-package",
"version": "1.0.0",
"description": "",
"scripts": {
"outlet": "cd token-outlet-website && npm start",
"token-issuer": "cd ticket-issuer-url-website && npm start",
"hotel-bogota-passive": "cd hotel-bogota-passive-negotiation-website && npm start",
"hotel-bogota-active": "cd hotel-bogota-active-negotiation-website && npm start",
"outlet-build": "cd token-outlet-website && npm run build",
"token-issuer-build": "cd ticket-issuer-url-website && npm run build",
"hotel-bogota-passive-build": "cd hotel-bogota-passive-negotiation-website && npm run build",
"hotel-bogota-active-build": "cd hotel-bogota-active-negotiation-website && npm run build",
"outlet-install": "cd token-outlet-website && npm i",
"token-issuer-install": "cd ticket-issuer-url-website && npm i",
"hotel-bogota-passive-install": "cd hotel-bogota-passive-negotiation-website && npm i",
"hotel-bogota-active-install": "cd hotel-bogota-active-negotiation-website && npm i",
"start": "concurrently \"npm run outlet\" \"npm run token-issuer\" \"npm run hotel-bogota-passive\" \"npm run hotel-bogota-active\" ",
"install": "npm run clean --loglevel verbose && concurrently \"npm run outlet-install\" \"npm run token-issuer-install\" \"npm run hotel-bogota-passive-install\" \"npm run hotel-bogota-active-install\" ",
"clean": "shx rm -rf ./hotel-bogota-active-negotiation-website/build ./hotel-bogota-passive-negotiation-website/build ./ticket-issuer-url-website/build ./token-outlet-website/build",
"github-pages-build": "concurrently \"npm run github-pages-token-issuer-build\" \"npm run github-pages-hotel-bogota-passive-build\" \"npm run github-pages-hotel-bogota-active-build\" \"npm run github-pages-outlet-build\" ",
"github-pages-token-issuer-build": "cd github-pages-use-only/ticket-issuer-url-website && npm run build",
"github-pages-hotel-bogota-passive-build": "cd github-pages-use-only/hotel-bogota-passive-negotiation-website && npm run build",
"github-pages-hotel-bogota-active-build": "cd github-pages-use-only/hotel-bogota-active-negotiation-website && npm run build",
"github-pages-outlet-build": "cd github-pages-use-only/token-outlet-website && npm run run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TokenScript/token-negotiator-examples.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TokenScript/token-negotiator-examples/issues"
},
"homepage": "https://github.com/TokenScript/token-negotiator-examples#readme",
"devDependencies": {
"concurrently": "^6.3.0",
"shx": "^0.3.3"
}
}