-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "@opiumteam/mobx-web3",
"version": "1.0.27",
"description": "Opium mobx-web3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc"
},
"license": "ISC",
"author": "Opium Team <[email protected]>",
"contributors": [
{
"name": "Ali Nuraldin",
"email": "[email protected]"
},
{
"name": "Riccardo Biosas",
"email": "[email protected]"
}
],
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpiumProtocol/mobx-web3.git"
},
"dependencies": {
"@binance-chain/bsc-connector": "^1.0.0",
"@browser-bunyan/console-formatted-stream": "^1.5.3",
"@coinbase/wallet-sdk": "^3.0.11",
"@gnosis.pm/safe-apps-sdk": "^2.2.0",
"@gnosis.pm/safe-apps-web3modal": "^0.2.2",
"@myetherwallet/mewconnect-web-client": "2.1.22",
"@types/browser-bunyan": "^0.4.5",
"@types/bunyan": "^1.8.6",
"@walletconnect/web3-provider": "1.3.1",
"browser-bunyan": "^1.5.3",
"csstype": "^3.0.5",
"fortmatic": "^2.0.6",
"mobx": "^5.15.4",
"web3": "1.2.11",
"web3modal": "1.9.7"
},
"devDependencies": {
"@types/node": "^12.11.5",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.5.1",
"husky": "^4.2.5",
"ts-node": "^8.8.2",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-push": "npm run build"
}
}
}