Files
p0tion/package.json
Jeeiii eda21d4e5b refactor: switch to monorepo approach by separating the CLI from the actions; renamings and minors
This monorepo approach where the CLI commands have a dedicated package of actions and helpers, the
backend is organized in a more generic fashion will ease the burden of testing and maintainability.

BREAKING CHANGE: The folder structure and build process (now using lerna)

re #175
2022-11-17 14:35:33 +01:00

70 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,
"keywords": [
"typescript",
"zero-knowledge",
"zk-snarks",
"phase-2",
"trusted-setup",
"ceremony",
"snarkjs",
"circom"
],
"scripts": {
"build": "lerna run build",
"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",
"lerna": "^6.0.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"
}
},
"workspaces": [
"apps/*",
"packages/*"
]
}