-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
44
45
46
47
48
49
50
51
{
"name": "fluidex.js",
"version": "0.0.1",
"description": "SDK for Fluidex Rollup",
"main": "./dist/index",
"typings": "dist/index",
"scripts": {
"build": "tsc --build",
"fmt": "npx prettier --write \"**/*.{js,ts}\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fluidex/fluidex.js.git"
},
"keywords": [
"layer2",
"zkrollup"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Fluidex/fluidex.js/issues"
},
"homepage": "https://github.com/Fluidex/fluidex.js#readme",
"dependencies": {
"@ethersproject/hdnode": "^5.2.0",
"@ethersproject/random": "^5.2.0",
"@ethersproject/signing-key": "^5.2.0",
"circomlib": "^0.5.0",
"ethers": "^5.2.0",
"ffjavascript": "^0.2.36"
},
"devDependencies": {
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"decimal.js": "^10.2.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"web3-utils": "^1.3.0",
"husky": "^7.0.0",
"lint-staged": ">=10",
"prettier": "^2.3.2"
},
"lint-staged": {
"src/*": "prettier --write"
}
}