Files
p0tion/package.json
2022-08-03 15:43:52 +02:00

74 lines
2.2 KiB
JSON

{
"name": "mpc-phase2-suite",
"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,
"workspaces": {
"packages": [
"phase2cli",
"firebase"
],
"nohoist": [
"**/snarkjs",
"**/snarkjs/**"
]
},
"keywords": [
"typescript",
"zero-knowledge",
"zk-snarks",
"phase-2",
"trusted-setup",
"ceremony",
"snarkjs",
"circom"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"test": "export GOOGLE_APPLICATION_CREDENTIALS=\"./firebase/serviceAccountKey.json\" && jest --coverage --detectOpenHandles",
"test:watch": "export GOOGLE_APPLICATION_CREDENTIALS=\"./firebase/serviceAccountKey.json\" && jest --coverage --watch --detectOpenHandles",
"commit": "cz",
"precommit": "lint-staged"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-config": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}