-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "velodrome v2",
"version": "0.1.0",
"scripts": {
"clean": "tsc --clean",
"build": "tsc --build",
"watch": "tsc --watch",
"dev": "envio dev",
"codegen": "envio codegen",
"start": "ts-node generated/src/Index.bs.js",
"dottest": "mocha -w --recursive -R dot --require ts-node/register \"test/**/*.ts\" --timeout 30000",
"test": "mocha --recursive --R spec --require ts-node/register \"test/**/*.ts\" --timeout 30000",
"test-watch": "mocha -w --recursive --R dot --require ts-node/register \"test/**/*.ts\" --timeout 30000",
"enable-hydra": "./hack/hydra-mode/hydra-mode.sh"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/node": "^18.16.1",
"@types/sinon": "^17.0.3",
"chai": "4.3.10",
"js-yaml": "4.1.0",
"sinon": "^19.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/mocha": "^10.0.6",
"chai": "4.3.10",
"envio": "2.9.1",
"mocha": "^10.2.0",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"viem": "2.21.0",
"web3": "^4.15.0"
},
"optionalDependencies": {
"generated": "./generated"
}
}