-
Notifications
You must be signed in to change notification settings - Fork 254
/
package.json
executable file
·80 lines (80 loc) · 2.85 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
{
"name": "zerion-defi-sdk",
"version": "1.0.0",
"main": "hardhat.config.ts",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "husky install",
"compile": "npx hardhat compile",
"test": "npx hardhat test --show-stack-traces",
"coverage": "npx hardhat coverage --network hardhat",
"lint:solhint": "npx solhint \"contracts/**/*.sol\"",
"lint:eslint": "eslint .",
"lint": "npm run lint:solhint && npm run lint:eslint",
"slither": "slither . --filter-paths \"node_modules\"",
"truffle-dashboard": "npx truffle dashboard",
"deploy:router": "npx hardhat run scripts/deploy_router.js --network truffle-dashboard",
"deploy:sc": "npx hardhat run scripts/deploy_simple_caller.js --network truffle-dashboard",
"deploy:univ2caller": "npx hardhat run scripts/deploy_uniswap_v2_caller.js --network truffle-dashboard",
"deploy:univ3caller": "npx hardhat run scripts/deploy_uniswap_v3_caller.js --network truffle-dashboard",
"initialize:router": "npx hardhat run scripts/setup_router_fee.js --network truffle-dashboard",
"verify": "npx hardhat run scripts/verify.js --network xlayer",
"docs:serve": "npx @techdocs/cli serve:mkdocs -p 3333"
},
"lint-staged": {
"contracts/**/*.sol": "npx prettier --write",
"test/**/*.js": "npx eslint --fix",
"scripts/*.js": "npx eslint --fix"
},
"author": "Zerion Inc.",
"license": "LGPL-3.0-only",
"repository": "https://github.com/zeriontech/defi-sdk",
"dependencies": {
"@openzeppelin/contracts": "4.4.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/register": "7.22.5",
"@codechecks/client": "0.1.12",
"@ethersproject/hash": "5.7.0",
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.4.1",
"@matterlabs/hardhat-zksync-verify": "^0.2.0",
"@nomicfoundation/hardhat-verify": "1.1.1",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-waffle": "2.0.6",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.1",
"@types/node": "20.4.5",
"chai": "4.3.7",
"core-js": "3.32.0",
"dotenv": "16.3.1",
"eslint": "8.46.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.0",
"ethers": "5.7.2",
"ganache": "7.0.3",
"hardhat": "2.18.1",
"hardhat-docgen": "1.3.0",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "2.5.1",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"mrm": "3.0.10",
"pinst": "2.1.6",
"prettier": "3.3.3",
"prettier-plugin-solidity": "1.4.1",
"regenerator-runtime": "0.13.11",
"solhint": "5.0.3",
"solhint-plugin-prettier": "0.1.0",
"solidity-coverage": "0.8.4",
"truffle": "5.11.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}