-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.14 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@augmint/contracts",
"version": "1.1.2",
"description": "Augmint Stable Tokens - Solidity contract's abi and deployment descriptors",
"author": "“Augmint”",
"homepage": "https://github.com/Augmint/augmint-contracts#readme",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/Augmint/augmint-contracts.git"
},
"bugs": {
"url": "https://github.com/Augmint/augmint-contracts/issues"
},
"keywords": [
"ethereum",
"solidity",
"augmint",
"stablecoin",
"aeur"
],
"engines": {
"node": "10.15.3",
"yarn": ">=1.22.4"
},
"scripts": {
"start": "yarn runmigrate",
"start_comp": "yarn runmigrate_comp",
"build": "truffle compile",
"clean": "rm build/contracts/*",
"test": "truffle test",
"coverage": "solidity-coverage",
"migrate": "truffle migrate --migrations_directory ./migrations",
"compile": "yarn build",
"ganache:run": "./scripts/runganache.sh",
"ganache:stop": "echo TODO",
"runmigrate": "./scripts/runganache.sh & yarn migrate --reset --to 2000 && echo 'Migration done. Contracts deployed to ganache. Contract artifacts are in build/contracts folder.' & wait",
"runmigrate_comp": "./scripts/runganache_comp.sh & yarn migrate --reset --to 2000 && echo 'Migration done. Contracts deployed to ganache. Contract artifacts are in build/contracts folder.' & wait",
"localchaindb:clean": "rm -rf localchaindb && mkdir localchaindb",
"localchaindb:build": "yarn localchaindb:clean && ./scripts/runganache.sh --db ./localchaindb & yarn migrate --to 2000 && echo 'Migration done. Ganache db in ./localchaindb folder.'",
"localchaindb:builddocker": "yarn localchaindb:build && yarn docker:build",
"docker:build": "docker build . -t localdockerimage",
"docker:run": "docker rm ganache ; docker run --init --name ganache -p 8545:8545 localdockerimage --db ./dockerLocalchaindb --gasLimit 0x694920 --gasPrice 1000000000 --networkId 999 -m \"hello build tongue rack parade express shine salute glare rate spice stock\" & wait",
"docker:start": "docker start ganache || yarn docker:run",
"docker:stop": "docker stop ganache",
"docker:tag:build": "docker tag localdockerimage augmint/contracts:commit-$(git log -1 --format='%h'); docker tag localdockerimage augmint/contracts:build-$TRAVIS_BUILD_NUMBER",
"docker:tag:staging": "docker tag localdockerimage augmint/contracts:staging;",
"docker:tag:latest": "docker tag localdockerimage augmint/contracts:latest",
"docker:tag:version": "func () { docker tag localdockerimage augmint/contracts:${1}; }; func",
"setrate:default": "truffle migrate -f 2000 --to 2000",
"setrate:low": "truffle migrate -f 2001 --to 2001",
"setrate:high": "truffle migrate -f 2002 --to 2002"
},
"devDependencies": {
"abiniser": "0.5.1",
"coveralls": "3.1.0",
"dotenv": "8.2.0",
"eslint": "7.9.0",
"ganache-cli": "6.10.2",
"moment": "2.28.0",
"random-seed": "0.3.0",
"solidity-coverage": "0.7.10",
"stringifier": "2.1.0",
"truffle": "5.1.44",
"@truffle/hdwallet-provider": "1.0.44",
"wait-on": "5.2.0"
},
"files": [
"abiniser"
]
}