generated from zerosnacks/solidity-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "fuse-v1",
"version": "0.1.0",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "prettier --check 'src/**/*.sol' && solhint --config .solhint.json 'src/**/*.sol'",
"lint:fix": "prettier --write 'src/**/*.sol' && solhint --config .solhint.json 'src/**/*.sol' --fix",
"hh:build": "hardhat compile",
"hh:clean": "hardhat clean",
"scripts:admin": "ts-node scripts/admin.ts",
"scripts:interfaces": "ts-node scripts/interfaces.ts",
"scripts:poke": "ts-node scripts/poke.ts",
"prepare": "husky install"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^3.4.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/hardhat": "^6.0.0",
"@types/argparse": "^2.0.10",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.2.0",
"@types/joi": "^17.2.3",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"argparse": "^2.0.1",
"dotenv": "^16.0.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^8.0.3",
"hardhat": "^2.9.6",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"joi": "^17.6.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"winston": "^3.7.2"
},
"lint-staged": {
"*.sol": "prettier --write 'src/**/*.sol'"
}
}