-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.87 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.87 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
{
"name": "worker-example",
"version": "0.8.2",
"author": "DFST",
"scripts": {
"test": "jest",
"local": "jest --chain=local --cloud=local --deploy=true --send=false --one=true --many=true",
"lightnet.deploy": "jest --chain=lightnet --cloud=local --deploy=true --one=false --many=false",
"lightnet.run": "jest --chain=lightnet --cloud=local --deploy=false --one=true --many=true",
"zeko.deploy": "jest --chain=zeko --deploy=true --cloud=local --one=false --many=false",
"zeko.run": "jest --chain=zeko --deploy=false --one=true --many=true -send=false",
"devnet.deploy": "jest --chain=devnet --cloud=local --deploy=true --one=false --many=false",
"devnet.run": "jest --chain=devnet --deploy=false --one=true --many=true --send=false",
"devnet.test": "jest --chain=devnet --deploy=false --one=true --many=false --send=false",
"files.local": "jest --chain=local --cloud=local --deploy=false --one=false --many=false --send=false --files=true",
"files.devnet": "jest --chain=devnet --deploy=false --one=false --many=false --send=false --files=true",
"encrypt.local": "jest --chain=local --cloud=local --deploy=false --one=false --many=false --send=false --encrypt=true",
"encrypt.devnet": "jest --chain=devnet --deploy=false --one=false --many=false --send=false --encrypt=true"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"packageManager": "yarn@4.5.2",
"dependencies": {
"o1js": "^2.1.0",
"zkcloudworker": "^0.18.15"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"slowTestThreshold": 1500,
"testTimeout": 10800000,
"bail": true,
"verbose": true,
"roots": [
"tests"
],
"setupFilesAfterEnv": [
"./jest-config.ts"
]
}
}