-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathpackage.json
76 lines (76 loc) · 2.99 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
{
"name": "@aztec/aztec3-packages",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"prepare": "node ./yarn-project-base/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 ./yarn-project-base/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 -j unlimited -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 private-token -p -j unlimited -v run test",
"build": "yarn workspace @aztec/l1-artifacts build && tsc -b tsconfig.json",
"build:dev": "yarn workspace @aztec/l1-artifacts build && tsc -b tsconfig.json --watch",
"clean": "yarn workspaces foreach -p -v run clean"
},
"workspaces": [
"acir-simulator",
"archiver",
"aztec-faucet",
"aztec-node",
"pxe",
"aztec-sandbox",
"aztec.js",
"boxes/blank",
"boxes/blank-react",
"boxes/token",
"circuits.js",
"cli",
"docs",
"end-to-end",
"ethereum",
"foundation",
"key-store",
"l1-artifacts",
"merkle-tree",
"noir-compiler",
"noir-contracts",
"noir-protocol-circuits",
"p2p",
"p2p-bootstrap",
"prover-client",
"rollup-provider",
"sequencer-client",
"scripts",
"types",
"world-state",
"yarn-project-base",
"kv-store"
],
"prettier": "@aztec/foundation/prettier",
"devDependencies": {
"@monorepo-utils/workspaces-to-typescript-project-references": "^2.9.0",
"@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": {
"ts-jest@^29.1.0": "patch:ts-jest@npm%3A29.1.1#./.yarn/patches/ts-jest-npm-29.1.1-04e888e48e.patch",
"ts-jest@^29.1.1": "patch:ts-jest@npm%3A29.1.1#./.yarn/patches/ts-jest-npm-29.1.1-04e888e48e.patch",
"@aztec/bb.js": "portal:../barretenberg/ts",
"@noir-lang/acvm_js": "portal:../noir/packages/acvm_js",
"@noir-lang/backend_barretenberg": "portal:../noir/packages/backend_barretenberg",
"@noir-lang/types": "portal:../noir/packages/types",
"@noir-lang/noirc_abi": "portal:../noir/packages/noirc_abi",
"@noir-lang/noir_wasm": "portal:../noir/packages/noir_wasm",
"@noir-lang/source-resolver": "portal:../noir/compiler/source-resolver",
"@noir-lang/noir_js": "portal:../noir/packages/noir_js"
}
}