-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.95 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.95 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
{
"name": "cloak_finance",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "yarn clean && tsc -b",
"build:dev": "tsc -b --watch",
"clean": "rm -rf .dest tsconfig.tsbuildinfo",
"start": "yarn build && node dest/scripts/index.js",
"compile:token": "cd packages/token && RUST_BACKTRACE=1 ${AZTEC_NARGO:-aztec-nargo} compile && aztec-postprocess-contract && rm -rf ./codegenCache.json && aztec codegen target --outdir src/artifacts",
"compile:factory": "cd packages/factory && RUST_BACKTRACE=1 ${AZTEC_NARGO:-aztec-nargo} compile && aztec-postprocess-contract && rm -rf ./codegenCache.json && aztec codegen target --outdir src/artifacts",
"compile:router": "cd packages/router && RUST_BACKTRACE=1 ${AZTEC_NARGO:-aztec-nargo} compile && aztec-postprocess-contract && rm -rf ./codegenCache.json && aztec codegen target --outdir src/artifacts",
"test:token": "cd packages/token && aztec test --show-output",
"test:factory": "cd packages/factory && aztec test --show-output",
"test:router": "cd packages/router && aztec test --show-output",
"bridge-juice": "node --loader ts-node/esm scripts/bridgeFeeJuice.ts",
"clean-target": "rm -rf ./src/artifacts ./target",
"codegen": "aztec codegen target --outdir src/artifacts",
"compile": "${AZTEC_NARGO:-aztec-nargo} compile",
"deploy": "node --loader ts-node/esm scripts/index.ts",
"token": "node --loader ts-node/esm scripts/token.ts",
"deploy-account": "node --loader ts-node/esm scripts/deploy-account.ts",
"get-block": "node --loader ts-node/esm scripts/getBlock.ts",
"test": "yarn test:js && yarn test:nr",
"test:js": "rm -rf store/pxe && NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --config jest.integration.config.json",
"test:nr": "aztec test",
"update": "aztec update --contract . && ./.github/scripts/update_contract.sh $(grep -oP 'tag\\s*=\\s*\"\\K[^\"]+' \"Nargo.toml\" | head -1) && yarn && yarn update-readme-version",
"update-readme-version": "node ./.github/scripts/update-readme-version.js"
},
"dependencies": {
"@aztec/accounts": "2.0.3",
"@aztec/aztec": "2.0.3",
"@aztec/aztec.js": "2.0.3",
"@aztec/noir-contracts.js": "2.0.3",
"@aztec/noir-test-contracts.js": "2.0.3",
"@aztec/protocol-contracts": "2.0.3",
"@aztec/pxe": "2.0.3",
"@aztec/stdlib": "2.0.3",
"@types/lodash.chunk": "^4.2.9",
"@types/node": "^22.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.15.1",
"jest": "^30.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"jest": {
"testTimeout": 200000
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}