-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 986 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "zkverify_examples",
"version": "1.0.0",
"description": "zkVerify Examples",
"author": "Horizen Labs <research@horizenlabs.io>",
"license": "ISC",
"scripts": {
"generate:single:proof": "cp .env.testnet .env && npx ts-node src/send-proof/index.ts"
},
"dependencies": {
"@polkadot/api": "^11.0.3",
"dotenv": "^16.4.5",
"keccak256": "^1.0.6",
"snarkjs": "^0.7.4",
"web3": "^4.9.0"
},
"devDependencies": {
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.21.5",
"@jest/globals": "29.5.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.1",
"@types/node": "20.1.1",
"@types/snarkjs": "^0.7.8",
"@types/web3": "^1.2.2",
"babel-jest": "29.5.0",
"bn.js": "^5.2.1",
"ts-node": "^10.9.2",
"typescript": "5.0.4"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/services/"
]
}
}