-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
29 lines (29 loc) · 933 Bytes
/
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
{
"name": "zrc",
"scripts": {
"run:isolated-server": "docker run --name zrc_local -d -p 5555:5555 --entrypoint isolatedServer zilliqa/zilliqa-isolated-server:a01fe00 -t 5000 -f boot.json -u 0",
"rm:isolated-server": "docker stop zrc_local | xargs docker rm",
"test:zrc": "PORT=5555 jest --verbose --runInBand",
"test": "npm run run:isolated-server; npm run test:zrc && npm run rm:isolated-server",
"format": "npx prettier --write ."
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@zilliqa-js/zilliqa": "3.5.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"@zilliqa-js/scilla-json-utils": "0.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"type": "module",
"jest": {
"preset": "ts-jest",
"testTimeout": 600000,
"globals": {
"GENESIS_PRIVATE_KEYS": [
"e53d1c3edaffc7a7bab5418eb836cf75819a82872b4a1a0f1c7fcf5c3e020b89"
]
}
}
}