-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 3.38 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
87
88
89
90
91
92
93
94
95
96
{
"name": "chat",
"private": true,
"version": "0.0.0",
"scripts": {
"check": "tsc --noEmit && npm run lint && npm test",
"build": "tsc && vite build",
"lint": "eslint . --ext .ts,.tsx",
"preview": "vite preview",
"start": "vite",
"start:prod": "vite --host",
"prettier": "prettier --write src",
"test": "jest"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.7.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@ensdomains/ens-avatar": "^0.2.1",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/experimental": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.6.0",
"@metamask/eth-sig-util": "^5.0.2",
"@reduxjs/toolkit": "^1.9.3",
"@rollup/plugin-inject": "^5.0.3",
"@streamr/sdk": "^100.2.2",
"@walletconnect/ethereum-provider": "^2.8.4",
"@web3-react/coinbase-wallet": "^8.2.0",
"@web3-react/core": "^8.2.0",
"@web3-react/empty": "^8.2.0",
"@web3-react/metamask": "^8.2.1",
"@web3-react/types": "^8.2.0",
"@web3-react/walletconnect-v2": "^8.3.6",
"axios": "^1.3.4",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.29.3",
"dexie": "^3.2.3",
"dexie-react-hooks": "^1.1.3",
"empty": "^0.10.1",
"eth-crypto": "^2.6.0",
"ethers": "^5.7.2",
"gsap": "^3.11.5",
"identicon.js": "^2.3.3",
"js-crypto-hkdf": "^1.0.4",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-modal": "^3.16.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"react-select": "^5.7.0",
"redux-saga": "^1.2.3",
"streamr-client-protocol": "^13.0.0",
"streamr-client-react": "^3.2.0",
"streamr-ui": "^1.0.0-experimental.0",
"tailwindcss": "^3.3.2",
"toasterhea": "^1.0.3",
"twin.macro": "^3.3.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@emotion/babel-plugin": "^11.10.6",
"@emotion/babel-plugin-jsx-pragmatic": "^0.2.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/identicon.js": "^2.3.1",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@types/react-modal": "^3.13.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react": "^3.1.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.36.0",
"eth-testing": "^1.14.0",
"fake-indexeddb": "^4.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.7",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^5.0.4",
"vite": "^4.3.6"
}
}