-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "@mach-34/zimburse",
"version": "1.0.0",
"main": "dist",
"types": "dist",
"license": "MIT",
"type": "module",
"scripts": {
"compile": "yarn compile:circuits true && yarn compile:contracts",
"compile:contracts": "./scripts/artifacts.sh",
"compile:circuits": "cd scripts && ./compile_testers.sh",
"deploy": "NODE_NO_WARNINGS=1 node --experimental-vm-modules --loader ts-node/esm scripts/deploy_aztec_contracts.ts",
"postinstall": "yarn compile:contracts true && yarn compile:circuits",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --config jest.integration.config.json --no-cache --runInBand --verbose",
"test:circuits": "yarn test tests/circuits",
"test:contracts": "yarn test tests/contracts",
"txe": "docker compose -f docker-compose.test.yml up --force-recreate --remove-orphans --abort-on-container-exit",
"txe:regen": "yarn compile:contracts && cd contracts/z_imburse_registry && aztec test --package z_imburse_registry",
"sandbox": "docker compose up"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@mach-34/noir-bignum-paramgen": "^1.0.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/node-forge": "^1.3.11",
"@zk-email/helpers": "^6.1.6",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@aztec/accounts": "^0.57.0",
"@aztec/aztec.js": "^0.57.0",
"@aztec/bb.js": "^0.57.0",
"@aztec/circuits.js": "^0.57.0",
"@aztec/noir-contracts.js": "^0.57.0",
"@jest/globals": "^29.7.0",
"@zk-email/zkemail-nr": "^1.2.1",
"node-forge": "^1.3.1"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"useESM": true
}
]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testRegex": "./tests/.*\\.test\\.ts$",
"rootDir": "./"
}
}