-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
{
"name": "@piedao/dough-liquidity-mining",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/pie-dao/dough-liquidity-mining.git",
"author": "Mick de Graaf <[email protected]>",
"license": "MIT",
"scripts": {
"remix": "remixd -s . --remix-ide https://remix.ethereum.org",
"compile": "npx hardhat compile --config hardhat.compile.config.ts",
"coverage": "npx hardhat coverage",
"clean": "rm -rf ./typechain && rm -rf ./artifacts && rm -rf ./cache",
"test": "npx hardhat test",
"test:nocheck": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat test"
},
"dependencies": {
"@openzeppelin/contracts": "^3.4.1",
"@openzeppelin/contracts-ethereum-package": "^2.5.0",
"@openzeppelin/upgrades": "^2.8.0",
"chai-subset": "^1.6.0"
},
"devDependencies": {
"@ethereum-waffle/chai": "^3.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^2.0.0",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "^0.2.12",
"ethereum-waffle": "^3.1.0",
"ethers": "^5.0.19",
"ganache-cli": "^6.7.0",
"hardhat": "^2.0.1",
"hardhat-typechain": "^0.3.3",
"openzeppelin-test-helpers": "^0.5.1",
"solc": "^0.5.12",
"solidity-coverage": "^0.7.16",
"solium": "^1.2.5",
"truffle": "^5.0.43",
"truffle-flattener": "^1.3.0",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^3.0.0",
"typescript": "^4.0.3"
}
}