-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "auctions-core",
"version": "1.0.0",
"description": "auctions core",
"main": "ts-build/src/index.js",
"scripts": {
"dev": "tsc-watch --noClear",
"build": "tsc --build tsconfig.json",
"start": "node .",
"test": "NODE_ENV=test npx hardhat test --network testnetwork --config local.hardhat.config.ts",
"lint": "eslint --ext \".js,.ts\" --ignore-path .gitignore . --max-warnings=0",
"hardhat:silent": "npx hardhat node &> /dev/null",
"hardhat": "npx hardhat node",
"hardhat:simulations": "npx hardhat --network testnetwork --config local.hardhat.config.ts run ./simulations/index.ts",
"simulate": "npm-run-all --parallel hardhat:silent hardhat:simulations"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --max-warnings=0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/smart-order-router": "^2.10.0",
"async-await-queue": "^2.1.3",
"bignumber.js": "^9.0.1",
"date-fns": "^2.28.0",
"deep-equal-in-any-order": "^2.0.0",
"ethers": "^5.4.6",
"evm-proxy-detection": "^1.0.0",
"memoizee": "^0.4.15",
"uuid": "^8.3.2"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/async-retry": "^1.4.5",
"@types/bunyan": "^1.8.8",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/memoizee": "^0.4.7",
"@types/mocha": "^9.1.1",
"@types/node": "^14.14.35",
"@types/prompts": "^2.0.14",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v3-sdk": "^3.8.2",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.4.0",
"hardhat": "^2.9.9",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prompts": "^2.4.2",
"ts-node": "^9.0.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.5.4"
}
}