mirror of
https://github.com/privacy-scaling-explorations/p0tion.git
synced 2026-01-14 08:17:54 -05:00
75 lines
2.7 KiB
JSON
75 lines
2.7 KiB
JSON
{
|
|
"name": "zkmpc",
|
|
"description": "MPC Phase 2 suite of tools for conducting zkSNARKs trusted setup ceremonies",
|
|
"repository": "git@github.com:quadratic-funding/mpc-phase2-suite.git",
|
|
"homepage": "https://github.com/quadratic-funding/mpc-phase2-suite",
|
|
"bugs": "https://github.com/quadratic-funding/mpc-phase2-suite/issues",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"keywords": [
|
|
"typescript",
|
|
"zero-knowledge",
|
|
"zk-snarks",
|
|
"phase-2",
|
|
"trusted-setup",
|
|
"ceremony",
|
|
"snarkjs",
|
|
"circom"
|
|
],
|
|
"scripts": {
|
|
"build": "lerna run build",
|
|
"test": "yarn test:dev",
|
|
"test:dev": "NODE_ENV=dev yarn workspace @zkmpc/backend emulator:exec-test",
|
|
"test:prod": "export GOOGLE_APPLICATION_CREDENTIALS=\"./packages/backend/serviceAccountKey.json\" && NODE_ENV=prod jest --config=jest.json --detectOpenHandles --forceExit --runInBand --coverage",
|
|
"test:ci-prod": "NODE_ENV=prod jest --config=jest.json --detectOpenHandles --forceExit --runInBand --coverage=false",
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
"prettier": "prettier -c .",
|
|
"prettier:fix": "prettier -w .",
|
|
"precommit": "lint-staged",
|
|
"commit": "cz",
|
|
"prepare": "husky install"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.2",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@commitlint/cli": "^17.3.0",
|
|
"@commitlint/config-conventional": "^17.3.0",
|
|
"@rollup/plugin-typescript": "^9.0.2",
|
|
"@types/chai": "^4.3.4",
|
|
"@types/chai-as-promised": "^7.1.5",
|
|
"@types/jest": "^29.2.3",
|
|
"@types/node": "^18.11.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.44.0",
|
|
"@typescript-eslint/parser": "^5.44.0",
|
|
"babel-jest": "^29.3.1",
|
|
"chai": "^4.3.7",
|
|
"chai-as-promised": "^7.1.1",
|
|
"commitizen": "^4.2.5",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.28.0",
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-jest": "^27.1.5",
|
|
"husky": "^8.0.2",
|
|
"jest": "^29.3.1",
|
|
"jest-config": "^29.3.1",
|
|
"lerna": "^6.0.3",
|
|
"lint-staged": "^13.0.3",
|
|
"prettier": "^2.8.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^3.4.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|