forked from bank2bank/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
39
40
41
42
43
{
"name": "zksync",
"version": "0.9.0",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"dependencies": {
"axios": "^0.21.1",
"websocket": "^1.0.30",
"websocket-as-promised": "^1.1.0",
"zksync-crypto": "^0.4.2"
},
"peerDependencies": {
"@ethersproject/logger": "^5.0.0",
"ethers": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.5",
"chai": "^4.2.0",
"ethers": "^5.0.26",
"mocha": "^8.2.0",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.0",
"ts-node": "^9.0.0",
"tslint": "^6.0.0-beta0",
"typescript": "^4.0.5"
},
"scripts": {
"lint:ts": "tslint -c tslint.json {examples,test,src}/**/*.ts",
"lint:ts-fix": "tslint -c tslint.json --fix {examples,test,src}/**/*.ts",
"tests": "mocha -r ts-node/register tests/**/*.test.ts",
"build": "tsc",
"watch": "tsc --watch",
"prepublish": "yarn build && rollup -c",
"generate-test-vectors": "yarn ts-node tests/test-generator.ts"
}
}