-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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": "marblegame-contracts",
"version": "1.0.0",
"description": "Marblegame contracts",
"scripts": {
"clean": "rm -Rf ./build/contracts",
"compile": "truffle compile",
"console": "truffle console",
"flatten": "mkdir -p build && truffle-flattener contracts/**/*.sol >> build/bundle.sol",
"migrate": "truffle migrate",
"networks": "truffle networks",
"debug": "truffle debug",
"postpublish": "npm run clean",
"prepublish": "npm run compile",
"test": "truffle test"
},
"license": "MIT",
"devDependencies": {
"dotenv": "^6.2.0",
"eslint": "5.0.1",
"ethjs-util": "^0.1.6",
"truffle": "5.3.4",
"truffle-deploy": "^1.1.0",
"truffle-flattener": "^1.5.0",
"truffle-assertions": "^0.9.2",
"web3": "^1.2.0",
"fast-csv": "4.3.6",
"@0xcert/ethereum-erc20": "1.1.0",
"@0xcert/ethereum-erc721": "1.10.0",
"@0xcert/ethereum-utils": "1.1.0",
"@opengsn/gsn": "^2.1.0",
"@openzeppelin/contracts": "3.3.0",
"@gnosis.pm/mock-contract": "^4.0.0",
"ethereum-doppelganger": "0.0.7"
}
}