forked from nicosampler/hop-react-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.59 KB
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": "hop-react-sdk",
"version": "0.1.4",
"description": "Allows to bridge tokens using Hop Platform",
"author": "nicosampler",
"license": "MIT",
"repository": "nicosampler/hop-react-sdk",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"setup:1": "cd example && yarn",
"setup:2": "cd example/node_modules/react && yarn link && cd ../react-dom && yarn link",
"setup:3": "yarn link && yarn link react && yarn link react-dom",
"setup:4": "cd example && yarn link hop-react-sdk",
"configure-example": "yarn setup:1 && yarn setup:2 && yarn setup:3 && yarn setup:4 && yarn build",
"dev:example": "cd example && yarn dev",
"build": "tsc"
},
"devDependencies": {
"@types/node": "^17.0.36",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.4",
"typescript": "^4.7.2"
},
"files": [
"lib"
],
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"@hop-protocol/sdk": "0.0.1-beta.625",
"@usedapp/core": "^1.0.5",
"ethers": "5.7.2",
"ts-enum-util": "^4.1.0"
}
}