forked from bobanetwork/boba_legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 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
68
69
70
71
72
73
{
"name": "@eth-optimism/integration-tests",
"version": "0.2.3",
"description": "[Optimism] Integration Tests",
"private": true,
"author": "Optimism PBC",
"license": "MIT",
"scripts": {
"lint": "yarn lint:fix && yarn lint:check",
"lint:fix": "yarn lint:check --fix",
"lint:check": "eslint .",
"build": "hardhat compile",
"test:integration": "hardhat --network boba test",
"test:integration:live": "IS_LIVE_NETWORK=true hardhat --network boba test",
"test:sync": "hardhat --network boba test sync-tests/*.spec.ts --no-compile",
"clean": "rimraf cache artifacts"
},
"devDependencies": {
"@boba/api": "0.0.1",
"@boba/contracts": "0.0.1",
"@boba/ve-boba": "0.0.1",
"@boba/bobalink": "1.0.0",
"@eth-optimism/contracts": "^0.5.11",
"@eth-optimism/core-utils": "0.8.1",
"@eth-optimism/sdk": "1.0.1",
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/transactions": "^5.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.0",
"@types/chai": "^4.2.17",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@uniswap/v3-core": "1.0.0",
"@uniswap/v3-periphery": "^1.0.1",
"@uniswap/v3-sdk": "^3.6.2",
"async-mutex": "^0.3.2",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"commander": "^8.3.0",
"dotenv": "^10.0.0",
"envalid": "^7.1.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^32.0.1",
"eth-gas-reporter": "^0.2.25",
"eth-sig-util": "^2.5.2",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.5.4",
"hardhat": "^2.9.2",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"prom-client": "^14.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"chalk": "^4.1.2",
"request-promise-native": "^1.0.9",
"ip": "^1.1.5",
"node-fetch": "^2.6.1"
}
}