forked from zksync-sdk/zksync2-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 836 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
{
"name": "zksync2-js-examples",
"version": "0.1.0",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.2",
"c8": "^8.0.1",
"chai": "^4.3.10",
"ethers": "^6.7.1",
"mocha": "^10.2.0",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"zksync-ethers": "^6.4.0"
},
"peerDependencies": {
"ethers": "^6.7.1"
},
"scripts": {
"test:prepare": "ts-node scripts/setup.ts",
"test:wait": "ts-node scripts/wait.ts",
"test": "mocha -r ts-node/register tests/*.test.ts",
"lint": "prettier . --write",
"lint:check": "prettier . --check",
"watch": "tsc --watch"
}
}