-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "rpc-tests",
"version": "1.0.0",
"description": "Test suite for the EON node RPC interface.",
"author": "Horizen Labs <[email protected]>",
"main": "index",
"scripts": {
"test-local": "cp .env.local .env && jest --config=jest.config.local.js",
"test-pregobi": "cp .env.pregobi .env && jest --config=jest.config.pregobi.js",
"test-gobi": "cp .env.gobi .env && jest --config=jest.config.gobi.js",
"test-eon": "cp .env.eon .env && jest --config=jest.config.eon.js --testPathIgnorePatterns \"transaction|debug\""
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.21.5",
"@jest/globals": "29.5.0",
"@openzeppelin/contracts": "^4.9.3",
"@types/jest": "29.5.1",
"@types/node": "20.1.1",
"@types/web3": "^1.2.2",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^3.0.0",
"babel-jest": "29.5.0",
"bn": "^1.0.5",
"canonical-weth": "^1.4.0",
"jest": "29.5.0",
"jest-html-reporter": "3.10.0",
"ts-jest": "29.1.0",
"typescript": "5.0.4",
"web3": "^4.1.1"
},
"dependencies": {
"axios": "1.4.0",
"dotenv": "16.0.3",
"yaml": "2.3.0"
}
}