-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "stbx_token",
"version": "0.0.1",
"engines": {
"node": "12.18.x",
"npm": "6.14.x"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.2.0",
"concurrently": "^5.3.0",
"eth-gas-reporter": "^0.2.17",
"ganache-cli": "^6.11.0",
"openzeppelin-solidity": "^3.2.0",
"solidity-docgen": "^0.5.11",
"truffle": "^5.1.47",
"truffle-plugin-verify": "^0.5.0",
"truffle-test-utils": "^0.1.0",
"@openzeppelin/test-helpers": "^0.5.10"
},
"scripts": {
"ganache": "ganache-cli --networkId $npm_package_config_ganache_networkId --allowUnlimitedContractSize --gasLimit $npm_package_config_ganache_gasLimit --gasPrice $npm_package_config_ganache_gasPrice --mnemonic \"$MNEMONIC\"",
"start": "concurrently \"npm run ganache\" \"npm run migrate\"",
"migrate": "rm -rf build && truffle migrate --reset --compile-all --network development",
"deploy": "truffle deploy",
"verify": "truffle run verify STBXToken",
"test": "concurrently \"npm run ganache\" \"npm run migrate && truffle test\" --kill-others --success first"
},
"config": {
"ganache": {
"networkId": 3431,
"gasPrice": 25000000000,
"gasLimit": 6500000
},
"deploy": {
"key": "",
"account": "",
"etherscanApiKey": ""
}
}
}