-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (28 loc) · 1.2 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
{
"name": "ethboards",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@chainsafe/truffle-plugin-abigen": "^0.0.1",
"@truffle/hdwallet-provider": "^1.0.35",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.2",
"ganache-cli": "^6.9.1",
"mocha": "^8.0.1",
"truffle": "^5.1.35",
"truffle-plugin-verify": "^0.3.11",
"ethereumjs-util": "^5.2.0",
"web3": "^1.2.9"
},
"scripts": {
"start:ganache": "./scripts/ganache.sh",
"build:truffle": "truffle compile",
"build:abi": "truffle run abigen BoardHandler EthBoards",
"deploy:local": "truffle migrate",
"deploy:rinkeby": "node --max-old-space-size=8192 ./node_modules/.bin/truffle migrate --network rinkeby",
"test": "waffle && mocha 'test/../.ts' --timeout 20000",
"clean:ganache": "rm -rf .ganache",
"docs": "solidity-docgen",
"verify:rinkeby": "truffle run verify EthBoards BoardHandler BlackBishop BlackKing BlackKnight BlackPawn BlackQueen BlackRook WhiteBishop WhiteKing WhiteKnight WhitePawn WhiteQueen WhiteRook BlueBase BlueBazooka BlueHeadquarters BlueSoldier BlueTank RedBase RedBazooka RedHeadquarters RedSoldier RedTank ChessBoard WarfieldBoard NoEvents --network rinkeby"
}
}