-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.48 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "meTokens-core",
"version": "1.0.0",
"description": "meTokens Protocol core smart contracts ",
"homepage": "https://meTokens.com",
"keywords": [
"erc20",
"ethereum",
"defi",
"dao",
"decentralization",
"token",
"bonding curve"
],
"author": "meTokens DAO",
"license": "Apache-2.0",
"scripts": {
"compileCI": "TS_NODE_TRANSPILE_ONLY=1 yarn hardhat compile",
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"lint:sol": "solhint -f table 'contracts/**/*.sol' --fix ",
"lint:prettier": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,js,json,md,sol}\"",
"lint": "yarn lint:prettier && yarn run lint:sol",
"deploy-local": "hardhat run scripts/deploy.ts --network hardhat",
"deploy-rinkeby": "hardhat run scripts/deploy.ts --network rinkeby",
"prepare": "husky install"
},
"lint-staged": {
"*.{json,yml,yaml,md,ts,js,sol}": [
"prettier --write"
]
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.0",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/smart-order-router": "^2.5.31",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.4.1",
"@uniswap/v3-sdk": "^3.8.3",
"hardhat-diamond-abi": "^3.0.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/big.js": "^6.1.4",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.26",
"chai": "^4.3.4",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.1",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.4",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.6.9",
"fs": "^0.0.1-security",
"hardhat": "^2.9.9",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-deploy": "^0.11.11",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"lint-staged": "^11.1.2",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
}
}