-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 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
{
"name": "@pie/smart-contract-boilerplate",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/pie-dao/pie-smart-contract-boilerplate.git",
"author": "Mick de Graaf <mick@mickdegraaf.nl>",
"license": "MIT",
"scripts": {
"compile": "npx buidler compile",
"typechain": "typechain --target ethers --outDir typechain './artifacts/*.json'",
"build": "yarn compile && yarn typechain",
"clean": "rm -rf ./artifacts && rm -rf ./typechain && rm -rf ./cache"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.6",
"@nomiclabs/buidler-ethers": "^1.3.3",
"@nomiclabs/buidler-etherscan": "^1.3.3",
"@nomiclabs/buidler-waffle": "^1.3.4",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"buidler-deploy": "^0.4.2",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^2.5.1",
"ethers": "^4.0.47",
"solidity-coverage": "^0.7.5",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typechain-target-ethers": "^1.0.4",
"typescript": "^3.9.5"
}
}