Files
zk-kit/package.json
cedoor 900804ebc8 fix: set correct command to generate docs
Former-commit-id: 15be64343f8702b22020bbd22556db6cb488c0f2 [formerly aa2e0c5acd8deb8010afbe4e1900a0f249701090] [formerly 8a51c81473866b722c027f1d20e121dcf570e49c [formerly 3392a4891e]]
Former-commit-id: e873306844cf099a4944b506860f9f25890e4428 [formerly 4afe54532a0a9607008cce665f637b5f5e601283]
Former-commit-id: 4d817100e57421096c8422830214d0139c2f6446
2022-01-20 17:52:58 +01:00

77 lines
2.3 KiB
JSON

{
"name": "zk-kit",
"description": "A monorepo of reusable JS libraries for zero-knowledge technologies.",
"license": "MIT",
"repository": "git@github.com:appliedzkp/zk-kit.git",
"homepage": "https://github.com/appliedzkp/zk-kit",
"bugs": "https://github.com/appliedzkp/zk-kit/issues",
"private": true,
"scripts": {
"install": "yarn bootstrap && yarn build",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run --parallel build:watch -- -- --watch",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "yarn lint && yarn test",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"publish:fp": "lerna publish from-package",
"docs": "lerna run docs",
"clean": "lerna clean",
"commit": "cz",
"precommit": "lint-staged"
},
"keywords": [
"javascript",
"typescript",
"monorepo",
"zero-knowledge",
"zk-snarks",
"circom"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^27.4.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.1",
"jest-config": "^27.4.7",
"lerna": "^4.0.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.64.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1"
}
}