forked from privacy-ethereum/maci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "maci",
"version": "1.2.0",
"description": "Minimal Anti-Collusion Infrastructure",
"repository": "https://github.com/privacy-scaling-explorations/maci",
"license": "MIT",
"scripts": {
"benchmarks": "lerna run benchmarks",
"build": "lerna run build --ignore=website",
"build:circuits-c": "lerna run build-test-circuits-c -- --outPath ../cli/zkeys --scope \"maci-circuits\"",
"build:circuits-wasm": "lerna run build-test-circuits-wasm -- --outPath ../cli/zkeys --scope \"maci-circuits\"",
"setup:zkeys": "NODE_OPTIONS=--max-old-space-size=4096 lerna run gen-zkeys -- --outPath ../cli/zkeys --scope \"maci-circuits\"",
"clean": "lerna exec -- rm -rf node_modules build && rm -rf node_modules",
"commit": "git cz",
"download:test-zkeys": "lerna run download-zkeys --scope \"maci-integrationtests\"",
"download:ceremony-zkeys": "bash .github/scripts/download-ceremony-artifacts.sh",
"prettier": "prettier -c .",
"prettier:fix": "prettier -w .",
"lint:ts": "eslint './**/**/*.ts' './**/**/*.tsx'",
"lint:ts:fix": "pnpm run lint:ts --fix",
"lint:sol": "solhint './contracts/contracts/**/*.sol'",
"lint:sol:fix": "pnpm run lint:sol --fix --noPrompt",
"test:cli": "lerna run test --scope \"maci-cli\"",
"test:cli-ceremony": "lerna run test:ceremony --scope \"maci-cli\"",
"test:integration": "lerna run test --scope \"maci-integrationtests\"",
"test": "lerna run test --ignore maci-integrationtests --ignore maci-cli",
"types": "lerna run types",
"typedoc": "lerna run typedoc",
"prepare": "is-ci || husky"
},
"author": "PSE",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "20",
"pnpm": "8"
}
}