forked from Sakeswap/sakeswap-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.24 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
{
"name": "SakeSwap",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "npx truffle test",
"compile": "npx truffle compile",
"deploy": "npx truffle migrate --network rinkeby",
"start": "npx ganache-cli -l 10000038 -i 1234 -e 100000 -a 10 -u 0 -g 1000000000 --allowUnlimitedContractSize -m \"$HDWALLET_MNEMONIC\"",
"version": "npx truffle version",
"extract-abis": "npx truffle-extract -o .abis",
"solhint": "npx solhint -f table contracts/**/*.sol",
"prettier:solidity": "npx prettier --write contracts/**/*.sol"
},
"dependencies": {
"@openzeppelin/contracts": "^3.1.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.6",
"@openzeppelin/cli": "^2.8.2",
"@truffle/hdwallet-provider": "^1.0.43",
"eth-gas-reporter": "^0.2.17",
"ganache-cli": "^6.10.1",
"mocha-junit-reporter": "^2.0.0",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.56",
"solc": "0.7.0",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.5",
"truffle": "5.1.42",
"truffle-assertions": "^0.9.2",
"truffle-extract": "pooltogether/truffle-extract#2a57b6e63a8a2057aad0fec63ba255cd46e9ff1d",
"truffle-flattener": "^1.4.4"
}
}