forked from bitsnark/bitsnark-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.04 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.04 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
{
"name": "bitsnark",
"version": "0.1.0",
"private": true,
"description": "",
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": ""
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"generate-tx": "ts-node ./src/agent/transactions-new.ts",
"generate-scripts": "ts-node ./src/agent/generate-scripts.ts",
"add-amounts": "ts-node ./src/agent/amounts.ts",
"lint": "eslint",
"lint-fix": "eslint --fix",
"tx-chart": "npm run generate-tx && ./analysis/generate-dot.sh",
"start-db": "docker run --name postgres -e POSTGRES_PASSWORD=1234 -d -p 5432:5432 postgres",
"start-prover": "ts-node ./src/agent/agent.ts bitsnark_prover_1",
"start-verifier": "ts-node ./src/agent/agent.ts bitsnark_verifier_1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@bitauth/libauth": "3.0.0",
"axios": "1.7.4",
"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",
"ecpair": "2.1.0",
"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",
"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/node": "20.16.10",
"@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",
"jest": "29.7.0",
"merkletreejs": "0.4.0",
"nodemon": "3.1.4",
"nyc": "17.0.0",
"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"
}
}