-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.01 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
{
"name": "uniswapv2-lp",
"version": "1.0.0",
"description": "nft liquidity pool",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage --solcoverjs \".solcover.js\"",
"deploy:local": "npx hardhat run $DEPLOY_PATH --network \"localhost\" ",
"deploy:rinkeby": "npx hardhat run $DEPLOY_PATH --network \"rinkeby\"",
"verify:rinkeby": "npx hardhat --network \"rinkeby\" etherscan-verify",
"clean:modules": "rm -rf node_modules",
"clean:contracts": "rm -rf artifacts && rm -rf cache",
"console:local": "npx hardhat console --network \"localhost\"",
"console:rinkeby": "npx hardhat console --network \"rinkeby\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/luanpontolio/uniswapv2-lp.git"
},
"keywords": [
"nft"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/luanpontolio/uniswapv2-lp/issues"
},
"homepage": "https://github.com/luanpontolio/uniswapv2-lp#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.1",
"@nomicfoundation/hardhat-toolbox": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.2.0",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.10",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.6.9",
"hardhat": "2.6.8",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.9.29",
"hardhat-typechain": "^0.3.3",
"husky": "^4.2.3",
"moment": "^2.29.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"engines": {
"node": "16.x",
"npm": "8.x"
}
}