-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.68 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bitsnark",
"version": "0.1.0",
"private": true,
"description": "",
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": ""
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"compile": "tsc",
"lint": "eslint --ignore-pattern node_modules/ --ignore-pattern dist/ --ignore-pattern python/ .",
"lint-fix": "npm run lint -- --fix",
"prettier-check": "./scripts/prettier.sh",
"prettier-fix": "./scripts/prettier.sh --fix",
"test": "jest",
"test-integration": "jest tests/integration/ --testPathIgnorePatterns='<rootDir>/dist/tests/integration/|<rootDir>/tests/integration-testnet/'",
"test-integration-testnet": "jest tests/integration-testnet/ --testPathIgnorePatterns='<rootDir>/dist/tests/integration-testnet/|<rootDir>/tests/integration/'",
"python-test": "./scripts/python-test.sh",
"postgres": "./scripts/postgres.sh",
"regtest": "./scripts/regtest.sh",
"bitcoin-listener": "./scripts/bitcoin-listener.sh",
"bitcoin-signer": "./scripts/bitcoin-writer.sh sign",
"bitcoin-sender": "./scripts/bitcoin-writer.sh broadcast",
"bitcoin-services": "./scripts/bitcoin-services.sh",
"prover-setup": "./scripts/setup.sh bitsnark_prover_1",
"verifier-setup": "./scripts/setup.sh bitsnark_verifier_1",
"prover-protocol": "./scripts/protocol.sh bitsnark_prover_1",
"verifier-protocol": "./scripts/protocol.sh bitsnark_verifier_1",
"mock-setup": "./scripts/mock-setup.sh",
"mock-setup-clear": "npm run postgres && ./scripts/mock-setup.sh",
"create-external-addresses": "ts-node ./src/agent/setup/create-external-addresses.ts",
"emulate-setup": "./scripts/emulate-setup.sh",
"emulate-setup-final": "npm run emulate-setup -- --final",
"emulate-setup-clear": "npm run postgres && npm run emulate-setup",
"emulate-setup-final-clear": "npm run postgres && npm run emulate-setup-final",
"verify-setup": "ts-node ./src/agent/setup/verify-setup.ts",
"generate-diagrams": "./scripts/generate-dot.sh",
"snapshot-create": "./scripts/snapshot.sh create",
"snapshot-load": "./scripts/snapshot.sh",
"e2e": "./scripts/e2e.sh"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@bitauth/libauth": "3.0.0",
"axios": "1.7.4",
"base58-universal": "^2.0.0",
"bigint-isqrt": "0.3.2",
"bitcoin-core": "4.2.0",
"bitcoinjs-lib": "6.1.6",
"bscript-parser": "0.1.0",
"crypto-js": "4.2.0",
"dotenv": "16.4.5",
"ecpair": "2.1.0",
"hash-wasm": "4.11.0",
"minimist": "1.2.8",
"pg-format": "1.0.4",
"sitka": "1.1.1",
"snarkjs": "0.7.4",
"telegraf": "4.16.3",
"tiny-secp256k1": "2.2.3",
"ts-graphviz": "2.1.4",
"ts-postgres": "2.0.4",
"uuid": "11.0.3",
"websnark": "git+https://github.com/tornadocash/websnark.git#4c0af6a8b65aabea3c09f377f63c44e7a58afa6d"
},
"devDependencies": {
"@eslint/js": "9.9.1",
"@types/crypto-js": "4.2.2",
"@types/eslint__js": "8.42.3",
"@types/jest": "29.5.12",
"@types/minimist": "1.2.5",
"@types/node": "20.16.10",
"@types/pg-format": "1.0.5",
"@types/sinon": "17.0.3",
"@types/snarkjs": "0.7.8",
"conventional-changelog-cli": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.9.1",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "29.7.0",
"merkletreejs": "0.4.0",
"nodemon": "3.1.4",
"nyc": "17.0.0",
"prettier": "3.3.3",
"sinon": "18.0.0",
"source-map-support": "0.5.21",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "8.3.0"
}
}