-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2.09 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
{
"name": "@mach-34/aztec-statechannel-tictactoe",
"version": "1.0.0",
"main": "./dest/src/index.js",
"license": "MIT",
"type": "module",
"engines": {
"yarn": "please-use-npm"
},
"scripts": {
"build": "tsc --outDir dest",
"artifacts": "./scripts/artifacts.sh",
"anvil": "anvil -p 8545 --host 0.0.0.0 --chain-id 31337",
"sandbox": "./../aztec-packages/yarn-project/aztec-sandbox/dest/bin/index.js",
"pxe:secondary": "MODE=pxe PXE_PORT=8085 AZTEC_NODE_URL='http://localhost:8079/' TEST_ACCOUNTS='false' npm run sandbox",
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --no-cache --runInBand --verbose --config jest.integration.config.json",
"test:statechannel": "npm run test tests/statechannel.test.ts",
"test:logic": "npm run test tests/tictactoe.test.ts"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/node": "^20.8.6",
"babel-jest": "^29.7.0",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.3"
},
"dependencies": {
"@aztec/accounts": "file:../aztec-packages/yarn-project/accounts",
"@aztec/acir-simulator": "file:../aztec-packages/yarn-project/acir-simulator",
"@aztec/aztec-node": "file:../aztec-packages/yarn-project/aztec-node",
"@aztec/aztec.js": "file:../aztec-packages/yarn-project/aztec.js",
"@aztec/circuit-types": "file:../aztec-packages/yarn-project/circuit-types",
"@aztec/circuits.js": "file:../aztec-packages/yarn-project/circuits.js",
"@aztec/foundation": "file:../aztec-packages/yarn-project/foundation",
"@aztec/l1-contracts": "file:../aztec-packages/yarn-project/l1-artifacts",
"@aztec/noir-compiler": "file:../aztec-packages/yarn-project/noir-compiler",
"@aztec/pxe": "file:../aztec-packages/yarn-project/pxe",
"@aztec/sandbox": "file:../aztec-packages/yarn-project/aztec-sandbox",
"@aztec/types": "file:../aztec-packages/yarn-project/types",
"@types/jest": "^29.5.6",
"ethers": "^6.8.0"
}
}