forked from pie-dao/PieVaults
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.78 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
{
"name": "ExperiPie",
"version": "0.1.1",
"description": "This is the default package.json generated for your project",
"main": "index.js",
"scripts": {
"prettier": "prettier --write contracts/**/*.sol",
"clean": "rm -rf ./build && rm -rf ./typechain && rm -rf ./artifacts",
"test": "npx buidler test",
"test:fast": "TS_NODE_TRANSPILE_ONLY=1 npx buidler test",
"compile": "npx buidler compile --config buidler.compile.config.ts",
"typechain": "typechain --target ethers-v5 --outDir typechain ./artifacts/**/*.json",
"docgen": "solidity-docgen --solc-module solc-0.7 --output-structure readmes",
"coverage": "npx buidler coverage --network coverage --temp artifacts",
"build": "yarn compile --force && yarn typechain",
"remix": "remixd -s . --remix-ide https://remix.ethereum.org"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethereum-waffle/chai": "^3.1.0",
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/buidler-ethers": "^2.0.2",
"@nomiclabs/buidler-etherscan": "^2.1.0",
"@openzeppelin/contracts": "^3.2.1-solc-0.7",
"@typechain/ethers-v5": "^2.0.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.10",
"chai-as-promised": "^7.1.1",
"diamond-2": "^1.3.4",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.17",
"solidity-coverage": "https://github.com/sc-forks/solidity-coverage",
"ts-node": "^9.0.0",
"typechain": "^3.0.0"
},
"devDependencies": {
"@codechecks/client": "^0.1.10",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eth-gas-reporter": "^0.2.17",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"solc-0.7": "npm:solc@^0.7.0",
"solidity-docgen": "^0.5.7",
"standard": "^14.3.4",
"typescript": "^4.0.3"
}
}