-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "Avastars-Contracts",
"version": "1.0.0",
"description": "Ethereum smart contracts and unit tests for Avastars project",
"main": "index.js",
"scripts": {
"ganache:start": "node ./start-ganache.js",
"truffle:start": "npx truffle console",
"uml:generate": "sol2uml ./contracts -f png -o docs/media/AvastarsUML.png",
"doc:generate": "node solidoc/cli.js",
"doc:serve": "docsify serve docs",
"sol:flatten": "./flatten-contracts.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/Dapp-Wizards/Avastars-Contracts.git"
},
"author": "Cliff Hall",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Dapp-Wizards/Avastars-Contracts/issues"
},
"homepage": "https://github.com/Dapp-Wizards/Avastars-Contracts",
"devDependencies": {
"@babel/core": "^7.0.0",
"abi-decoder": "^2.2.2",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"bn.js": "^5.0.0",
"docsify-cli": "^4.4.0",
"eth-gas-reporter": "^0.2.12",
"ganache-cli": "^6.8.2",
"sol2uml": "^1.1.12",
"solhint": "^2.3.0",
"truffle": "^5.1.11",
"truffle-assertions": "^0.9.2",
"truffle-contract": "^4.0.31",
"truffle-flattener": "^1.4.2"
},
"dependencies": {
"@openzeppelin/contracts": "^2.4.0",
"@truffle/hdwallet-provider": "^1.0.30",
"web3": "^1.2.5"
}
}