-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.36 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
{
"name": "swap-box-web3",
"version": "1.0.0",
"main": "src/index.ts",
"license": "AGPL-3.0-or-later",
"scripts": {
"accounts:genkey": "node ./dist/accounts/createAccount.js",
"accounts:addkey": "node ./dist/accounts/addAccount.js",
"build:contracts": "hardhat compile",
"build:src": "tsc --version && tsc",
"build": "yarn build:contracts && yarn build:src",
"buildAndStart": "yarn build && yarn start",
"clean:src": "rm -rf dist/",
"clean:contracts": "hardhat clean && rm -rf src/typechain contracts/deps contracts/docs hardhat-cache",
"clean": "yarn clean:src && yarn clean:contracts",
"cleanAndBuild": "yarn clean && yarn build",
"deploy": "yarn hardhat run scripts/deploy_swapbox.ts --network localhost",
"start": "node ./dist",
"start:dev": "nodemon ./dist/index.js",
"test": "hardhat test"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.2-solc-0.7",
"@types/bip39": "^2.4.2",
"@types/config": "^3.3.0",
"@types/node": "^18.7.14",
"@types/zeromq": "^5.2.1",
"@uniswap/v2-sdk": "^4.2.0",
"config": "^3.3.7",
"ethers": "5.7.2",
"openzeppelin-4": "yarn:@openzeppelin/contracts@4.5.0",
"prompt": "^1.0.0",
"systeminformation": "^5.12.6",
"truffle": "5.0.26",
"typescript": "^4.8.2",
"zeromq": "^5.2.8"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^5.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@uniswap/hardhat-v3-deploy": "^0.1.1",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "https://github.com/Uniswap/v3-core",
"@uniswap/v3-periphery": "https://github.com/Uniswap/v3-periphery",
"@uniswap/v3-sdk": "3.12.0",
"chai": "^4.3.6",
"decimal.js": "10.2.1",
"eslint": "^8.23.1",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.12.3",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^2.0.2",
"hardhat-tracer": "^1.1.0-rc.6",
"nodemon": "^1.18.5",
"ts-node": "^9.1.1",
"typechain": "^7.0.0"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}