-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
87 lines (87 loc) · 3.27 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@aztec/aztec3-packages",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"prepare": "node ./scripts/update_package_jsons.mjs && yarn workspaces foreach run prepare && workspaces-to-typescript-project-references --tsconfigPath tsconfig.json && prettier -w */tsconfig.json",
"prepare:check": "node ./scripts/update_package_jsons.mjs --check && workspaces-to-typescript-project-references --check --tsconfigPath tsconfig.json",
"docs": "typedoc --out docs/dist && cd docs && yarn serve",
"formatting": "FORCE_COLOR=true yarn workspaces foreach -p -v run formatting",
"formatting:fix": "FORCE_COLOR=true yarn workspaces foreach -p -v run formatting:fix",
"lint": "yarn eslint --cache --ignore-pattern l1-artifacts .",
"format": "yarn prettier --cache -w .",
"test": "FORCE_COLOR=true yarn workspaces foreach --exclude @aztec/aztec3-packages --exclude @aztec/end-to-end --exclude @aztec/prover-client -p -v run test && yarn workspaces foreach --include @aztec/end-to-end -p -v run test:unit",
"build": "FORCE_COLOR=true yarn workspaces foreach --parallel --topological-dev --verbose --exclude @aztec/aztec3-packages --exclude @aztec/docs run build",
"build:fast": "cd foundation && yarn build && cd ../l1-artifacts && yarn build && cd ../circuits.js && yarn build && cd .. && yarn generate && tsc -b",
"build:dev": "./watch.sh",
"generate": "FORCE_COLOR=true yarn workspaces foreach --parallel --topological-dev --verbose run generate",
"clean": "yarn workspaces foreach -p -v run clean"
},
"workspaces": [
"accounts",
"entrypoints",
"simulator",
"archiver",
"aztec-faucet",
"aztec-node",
"validator-client",
"bb-prover",
"bot",
"builder",
"pxe",
"aztec",
"aztec.js",
"circuits.js",
"circuit-types",
"cli",
"cli-wallet",
"docs",
"end-to-end",
"entrypoints",
"ethereum",
"foundation",
"key-store",
"kv-store",
"l1-artifacts",
"merkle-tree",
"ivc-integration",
"noir-contracts.js",
"noir-protocol-circuits-types",
"p2p",
"p2p-bootstrap",
"proof-verifier",
"protocol-contracts",
"prover-client",
"prover-node",
"rollup-provider",
"sequencer-client",
"scripts",
"types",
"txe",
"world-state",
"telemetry-client"
],
"prettier": "@aztec/foundation/prettier",
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.9.0",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"eslint": "^8.21.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"madge": "^6.1.0",
"prettier": "^2.8.8",
"typedoc": "^0.24.8",
"typescript": "^5.0.4"
},
"resolutions": {
"@aztec/bb.js": "portal:../barretenberg/ts",
"@noir-lang/acvm_js": "portal:../noir/packages/acvm_js",
"@noir-lang/types": "portal:../noir/packages/types",
"@noir-lang/noirc_abi": "portal:../noir/packages/noirc_abi",
"@noir-lang/noir_codegen": "portal:../noir/packages/noir_codegen",
"@noir-lang/noir_js": "file:../noir/packages/noir_js",
"jest-runner@^29.7.0": "patch:jest-runner@npm%3A29.7.0#./.yarn/patches/jest-runner-npm-29.7.0-3bc9f82b58.patch"
}
}