forked from alchemistcoin/alchemist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "alchemist",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:alchemistcoin/alchemist.git",
"author": "thegostep @thegostep",
"license": "MIT",
"scripts": {
"compile": "yarn hardhat compile",
"test": "yarn hardhat test",
"profile": "REPORT_GAS=true yarn hardhat test",
"coverage": "yarn hardhat coverage",
"format": "yarn prettier --config .prettierrc --write '**/*.ts' 'contracts/**/*.sol'",
"lint": "yarn solhint 'contracts/**/*.sol'"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.0-solc-0.7",
"@types/chai": "^4.2.14",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.3.0",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.28",
"hardhat": "^2.0.10",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.3",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}