-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "bridge-mutual.contracts",
"version": "1.0.0",
"license": "MIT",
"author": "BridgeMutual R&D Team",
"description": "",
"main": "index.js",
"scripts": {
"install": "npx husky install",
"private-network": "ganache-cli -e 1000000 -l 10000000 -m \"guitar edit involve comic viable when gossip tail organ draw route blush solution strike bubble\" --time 1970-01-01T00:00:00Z",
"private-network-quiet": "ganache-cli -e 1000000 -l 10000000 -m \"guitar edit involve comic viable when gossip tail organ draw route blush solution strike bubble\" --time 1970-01-01T00:00:00Z --quiet",
"private-network-quiet-fork": "ganache-cli -e 1000000 -l 10000000 -m \"guitar edit involve comic viable when gossip tail organ draw route blush solution strike bubble\" --time 1970-01-01T00:00:00Z --quiet --fork wss://mainnet.infura.io/ws/v3/$(grep PROJECT_ID .env | cut -d '\"' -f2)",
"deploy-rinkeby": "truffle deploy --network rinkeby --reset --compile-all",
"deploy-ropsten": "truffle deploy --network ropsten --reset --compile-all",
"deploy-dev": "truffle deploy --network development --reset --compile-all",
"test-all": "npm run deploy-dev && truffle test --compile-none --migrations_directory test",
"test": "truffle test",
"test-no-deploy": "truffle test --compile-all --migrations_directory test",
"coverage": "truffle run coverage",
"compile": "truffle compile --all",
"flatten": "./scripts/flattener.sh",
"develop": "truffle develop",
"lint-fix": "npm run lint-sol-fix && npm run lint-js-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./[a-zA-Z0-9.]+(?!-lock).json\"",
"lint-js-fix": "prettier --write \"./**/*.js\"",
"lint-sol-fix": "prettier --write \"contracts/**/*.sol\""
},
"dependencies": {
"@openzeppelin/contracts": "3.2.1-solc-0.7",
"@openzeppelin/contracts-upgradeable": "3.3.0",
"@truffle/hdwallet-provider": "1.4.0",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"dotenv": "8.2.0",
"ethereumjs-util": "7.1.0",
"ganache-cli": "6.12.2",
"solc": "0.7.4",
"truffle": "5.1.49",
"web3": "1.2.11"
},
"devDependencies": {
"@babel/parser": "7.12.16",
"@openzeppelin/test-helpers": "0.5.6",
"aes-js": "3.0.0",
"axios": "0.21.1",
"bignumber.js": "9.0.0",
"chai": "4.2.0",
"chai-bn": "0.2.1",
"eth-gas-reporter": "0.2.22",
"eth-sig-util": "3.0.1",
"form-data": "2.3.3",
"husky": "6.0.0",
"mocha": "8.1.1",
"prettier": "2.3.2",
"prettier-plugin-solidity": "1.0.0-beta.10",
"solhint": "3.3.6",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.16",
"truffle-assertions": "0.9.2",
"truffle-flattener": "1.5.0",
"truffle-plugin-verify": "0.5.7",
"truffle-test-utils": "0.1.0"
}
}