-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
38 lines (38 loc) · 1.45 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
{
"name": "private_voting_codespace",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/critesjosh/private_voting_codespace.git",
"author": "Josh Crites <jc@joshcrites.com>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "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/deploy.ts",
"get-block": "node --loader ts-node/esm scripts/getBlock.ts",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --config jest.integration.config.json && aztec test",
"update": "aztec update --contract . && ./.github/scripts/update_contract.sh $(grep -oP 'tag\\s*=\\s*\"\\K[^\"]+' \"Nargo.toml\" | head -1) && yarn"
},
"dependencies": {
"@aztec/accounts": "0.68.2",
"@aztec/aztec.js": "0.68.2",
"@aztec/noir-contracts.js": "0.68.2",
"@types/node": "^22.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.5.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"jest": {
"testTimeout": 200000
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}