forked from WalletConnect/walletconnect-example-dapp
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
70 lines (70 loc) · 1.98 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
{
"name": "walletconnect-example-dapp",
"version": "1.8.0",
"private": true,
"homepage": "https://algorand.github.io/walletconnect-example-dapp",
"keywords": [
"walletconnect",
"algorand",
"crypto"
],
"author": "WalletConnect <walletconnect.org>",
"license": "LGPL-3.0",
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"lint": "eslint -c './.eslintrc' --fix './src/**/*{.ts,.tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algorand/walletconnect-example-dapp.git"
},
"bugs": {
"url": "https://github.com/algorand/walletconnect-example-dapp/issues"
},
"dependencies": {
"@json-rpc-tools/utils": "^1.7.5",
"@walletconnect/client": "^1.8.0",
"algorand-walletconnect-qrcode-modal": "^1.8.0",
"algosdk": "^1.11.1",
"blockies-ts": "^1.0.0",
"prop-types": "^15.7.2",
"qr-image": "^3.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts-ts": "^4.0.8",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.6",
"@types/prop-types": "^15.7.3",
"@types/qr-image": "^3.2.3",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react": "^1.1.7",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}