-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.99 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.99 KB
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
42
43
{
"name": "tip-verification",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"deploy": "./deploy.sh -i ${SUBSCRIPTION_ID} -g ${RESOURCE_GROUP_NAME} -n ${RESOURCE_GROUP_NAME}deploy -l centralus",
"delete": "az group delete -n ${RESOURCE_GROUP_NAME}",
"poa_info": "az group deployment show -g ${RESOURCE_GROUP_NAME} -n ${RESOURCE_GROUP_NAME}deploy | jq '.properties.outputs'",
"rpc": "az group deployment show -g ${RESOURCE_GROUP_NAME} -n ${RESOURCE_GROUP_NAME}deploy | jq -r '.properties.outputs.ethereum_rpc_endpoint.value'",
"admin": "az group deployment show -g ${RESOURCE_GROUP_NAME} -n ${RESOURCE_GROUP_NAME}deploy | jq '.properties.outputs.admin_site.value' | xargs open",
"oms": "az group deployment show -g ${RESOURCE_GROUP_NAME} -n ${RESOURCE_GROUP_NAME}deploy | jq '.properties.outputs.oms_portal_url.value' | xargs open",
"ssh": "az group deployment show -g ${RESOURCE_GROUP_NAME} -n ${RESOURCE_GROUP_NAME}deploy | jq -r '.properties.outputs.ssh_to_first_vl_node_region1.value'",
"td": "yarn truffle deploy --network poa",
"fix-app-js": "sed -i '' 's@const rpc_endpoint = .*@const rpc_endpoint = \"'$ETHEREUM_RPC_ENDPOINT'\";@' ./src/js/app.js",
"dev": "yarn run fix-app-js && lite-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlisProject/tip-verification.git"
},
"author": "@sot528",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlisProject/tip-verification/issues"
},
"homepage": "https://github.com/AlisProject/tip-verification#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"bootstrap": "^4.1.3",
"fs": "^0.0.1-security",
"lite-server": "^2.4.0",
"truffle": "^4.1.14",
"truffle-contract": "^3.0.6",
"truffle-hdwallet-provider": "^0.0.6",
"web3": "^1.0.0-beta.36"
}
}