forked from sidestream-tech/unified-auctions-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
{
"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": "npx hardhat test --network testnetwork",
"lint": "eslint --ext \".js,.ts\" --ignore-path .gitignore . --max-warnings=0",
"fake-flop": "npx hardhat --network testnetwork run ./scripts/causeDebt.ts"
},
"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",
"bignumber.js": "^9.0.1",
"date-fns": "^2.28.0",
"ethers": "^5.4.6",
"memoizee": "^0.4.15",
"uuid": "^8.3.2"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/memoizee": "^0.4.7",
"@types/mocha": "^9.1.1",
"@types/node": "^14.14.35",
"@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",
"prettier": "^2.1.1",
"ts-node": "^9.0.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.5.4"
}
}