mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-01-14 00:47:53 -05:00
76 lines
2.2 KiB
JSON
76 lines
2.2 KiB
JSON
{
|
|
"name": "@zkopru/coordinator",
|
|
"version": "2.0.0-beta.8",
|
|
"license": "GPL-3.0-or-later",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"zkopru, coordinator, cli, verifier"
|
|
],
|
|
"_moduleAliases": {
|
|
"~account": "../account/dist",
|
|
"~coordinator": "dist",
|
|
"~database": "../database/dist",
|
|
"~utils": "../utils/dist",
|
|
"~utils-docker": "../utils-docker/dist"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "shx mkdir -p dist",
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"clean": "tsc --build tsconfig.build.json --clean && shx rm -rf coverage *.log junit.xml dist && jest --clearCache",
|
|
"link-modules": "link-module-alias",
|
|
"test": "jest",
|
|
"test:trace": "LOG_LEVEL=trace PRINT_LOG=true jest",
|
|
"test:unit": "jest test/unit",
|
|
"test:watch": "jest --watch",
|
|
"test:ci": "jest --coverage --ci --reporters='jest-junit'",
|
|
"coverage": "jest --coverage",
|
|
"coverage:show": "live-server coverage",
|
|
"dev": "ts-node src/cli.ts --ws ws://localhost:5000",
|
|
"dev:config": "ts-node src/cli.ts --ws ws://localhost:5000 --config coordinator.json",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@zkopru/babyjubjub": "file:../babyjubjub",
|
|
"@zkopru/contracts": "file:../contracts",
|
|
"@zkopru/core": "file:../core",
|
|
"@zkopru/database": "file:../database",
|
|
"@zkopru/transaction": "file:../transaction",
|
|
"@zkopru/tree": "file:../tree",
|
|
"@zkopru/utils": "file:../utils",
|
|
"async-lock": "^1.2.2",
|
|
"axios": "^0.21.1",
|
|
"big-integer": "^1.6.48",
|
|
"bip39": "^3.0.2",
|
|
"blessed": "^0.1.81",
|
|
"bn.js": "^5.2.0",
|
|
"chalk": "^4.0.0",
|
|
"express": "^4.17.1",
|
|
"figlet": "^1.4.0",
|
|
"fs-extra": "^9.0.0",
|
|
"node-ansiparser": "^2.2.0",
|
|
"node-ansiterminal": "^0.2.1-beta",
|
|
"node-fetch": "^2.6.0",
|
|
"node-schedule": "^1.3.2",
|
|
"prompts": "^2.3.2",
|
|
"snarkjs": "0.3.33",
|
|
"soltypes": "^1.3.5",
|
|
"web3": "1.2.11",
|
|
"web3-core": "1.2.11",
|
|
"web3-core-subscriptions": "1.2.11",
|
|
"web3-eth": "1.2.11",
|
|
"web3-utils": "1.2.11",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"fs-extra": "^9.0.0",
|
|
"node-docker-api": "^1.1.22"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|