-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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": "C2FC-Smart-Contracts",
"version": "1.0.1-c",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/truffle test",
"start": "npm-run-all -p \"ganache-cli -- -b 3\" compile-deploy-contracts",
"compile-deploy-contracts": "npm-run-all -s compile-contracts deploy-contracts",
"compile-contracts": "rm -rf ./build && ./node_modules/.bin/truffle compile",
"deploy-contracts": "./node_modules/.bin/truffle migrate",
"ganache-cli": "./node_modules/.bin/ganache-cli"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"dotenv": "^6.0.0",
"ganache-cli": "^6.2.5",
"lodash": "^4.17.5",
"npm-run-all": "^4.1.5",
"openzeppelin-solidity": "^2.1.2",
"openzeppelin-test-helpers": "^0.1.1",
"snazzy": "^7.0.0",
"solidity-coverage": "github:sc-forks/solidity-coverage#6a13575e3597e491299a9dd1474c64c9066faa69",
"standard": "^10.0.3",
"testrpc": "0.0.1",
"truffle": "^5.0.2",
"truffle-contract": "^3.0.6",
"truffle-hdwallet-provider": "1.0.3",
"zos-lib": "^1.3.0",
"web3": "1.0.0-beta.41"
},
"devDependencies": {
"eth-gas-reporter": "^0.1.12"
}
}