-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@web3-systems/react-multichain",
"description": "React MultiChain state management and component library",
"private": true,
"author": "Kames Geraghty",
"license": "MIT",
"version": "0.1.0",
"homepage": "https://github.com/web3-systems/react-multichain",
"bugs": "https://github.com/web3-systems/react-multichain/issues",
"engines": {
"node": ">=10"
},
"module": "dist/react-multichain.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"watch": "tsdx watch",
"package:build": "tsdx build",
"package:lint": "tsdx lint",
"package:test": "tsdx test",
"package:watch": "tsdx watch",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .cache",
"clean:test": "jest --clearCache",
"docs": "yarn typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs true --namedAnchors true --entryDocument index.md",
"docs:html": "yarn typedoc --plugin none --out docs",
"prepare": "husky install",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"@ethersproject/abi": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.1",
"@ethersproject/transactions": "^5.5.0",
"@web3-systems/evm-morphism": "^0.1.0-beta.1",
"@web3-systems/multichain-database": "latest",
"@web3-systems/multichain-providers": "latest",
"@web3-systems/multiscan-client": "latest",
"@web3-systems/react-evm": "latest",
"classnames": "^2.3.1",
"nested-property": "^4.0.0",
"react-table": "^7.7.0",
"react-tiny-popover": "^7.0.1",
"use-immer": "^0.6.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-table": "^7.7.9",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-app": "^5.2.1",
"husky": "^7.0.4",
"prettier": "^1.19.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}