-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 3.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "mindful-cash",
"version": "0.0.1",
"scripts": {
"build": "yarn run compile && yarn run typechain",
"compile": "npx buidler --config ./buidler.compile.config.ts compile",
"coverage": "yarn run build && npx buidler coverage --temp artifacts --network coverage",
"lint:solidity": "npx solhint ./contracts/**/*.sol",
"lint:typescript": "tslint -c tslint.json {test,typechain,utils}/**/*.ts",
"lint": "yarn lint:solidity && yarn lint:typescript",
"prettier:solidity": "npx prettier --write ./contracts/**/*.sol --print-width 100",
"prettier:typescript": "npx prettier --write {test,typechain,utils}/**/*.ts --print-width 100",
"prettier": "yarn prettier:solidity && yarn prettier:typescript",
"test": "npx buidler test",
"typechain": "typechain --target ethers-v4 --outDir typechain ./artifacts/**/*.json",
"clean": "rm -rf ./artifacts && rm -rf ./cache && rm -rf ./coverage && rm -rf dist && rm -rf ./typechain",
"remix": "remixd -s . --remix-ide https://remix.ethereum.org",
"deploy-kovan-implementation": "npx buidler deploy-smart-pool-implementation-complete --MindfulImpl --network kovan",
"doc:uml": "sol2uml ./contracts -f png -o ./docs/uml/MindfulCash.png",
"doc:uml:mindful": "sol2uml ./contracts/mindful/MindfulProxy.sol -f png -o ./docs/uml/MindfulProxy.png",
"doc:control-flow": "surya graph -m contracts/*.sol | dot -Tpng > ./docs/control-flow/MindfulCash.png",
"doc:control-flow:high-level": "surya graph -s contracts/*.sol | dot -Tpng > ./docs/control-flow/MindfulCashHighLevel.png",
"doc:control-flow:mindfulproxy": "surya graph -m contracts/mindful/MindfulProxy.sol | dot -Tpng > ./docs/control-flow/MindfulProxy.png",
"docify": "node docify.js"
},
"devDependencies": {
"@nomiclabs/buidler-ethers": "^1.3.4",
"@nomiclabs/buidler-waffle": "^1.3.5",
"@typechain/ethers-v4": "^1.0.0",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"buidler-deploy": "^0.4.13",
"buidler-gas-reporter": "^0.1.4",
"chai": "^4.2.0",
"ethereum-waffle": "^2.3.2",
"npm": "^6.14.8",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-alpha.52",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"solc-0.6.4": "npm:[email protected]",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.9",
"solidity-docgen": "^0.5.6",
"ts-generator": "0.0.8",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"typechain": "^2.0.0",
"typescript": "^3.7.5"
},
"directories": {
"test": "test"
},
"dependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-etherscan": "^2.1.0",
"@openzeppelin/contracts": "3.1.0",
"@pie-dao/mock-contracts": "0.0.9",
"@pie-dao/proxy": "0.0.6",
"apexcharts": "^3.22.0",
"axios": "^0.18.0",
"bn.js": "^5.1.1",
"bnc-notify": "^1.2.4",
"core-js": "^3.6.5",
"cross-env": "^5.2.0",
"cryptocompare": "^1.0.0",
"dotenv": "^8.2.0",
"ethers": "^4.0.47",
"husky": "^4.3.0",
"moment": "^2.24.0",
"pify": "^4.0.1",
"rxjs": "^6.6.0"
},
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
}
}