-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 882 Bytes
/
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
{
"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": {
"compile": "aztec-cli compile --typescript ./src/artifacts .",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --config jest.integration.config.json",
"update": "./.github/scripts/update_contract.sh $(grep -oP 'tag=\"\\K[^\"]+' \"Nargo.toml\" | head -1)"
},
"dependencies": {
"@aztec/aztec.js": "^0.16.9"
},
"devDependencies": {
"@aztec/noir-contracts": "^0.16.9",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"jest": {
"testTimeout": 20000
}
}