-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
228 lines (228 loc) · 8.03 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
"name": "core-frontend",
"version": "4.13.10",
"description": "Streamr Hub",
"main": "src/index.jsx",
"scripts": {
"cypress": "cypress run",
"start": "webpack-dev-server --hot --host 0.0.0.0",
"start:ci": "node --max_old_space_size=4096 ./node_modules/.bin/webpack-dev-server --host 0.0.0.0",
"build": "node --max_old_space_size=4096 ./node_modules/.bin/webpack --progress --profile",
"test": "cross-env NODE_ENV=development jest --verbose --useStderr",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"stylelint": "stylelint **/*.ts **/*.tsx",
"stylelint-fix": "npm run stylelint -- --fix",
"lint-staged": "lint-staged",
"storybook": "storybook dev -p 6006",
"build-storybook": "node --max_old_space_size=4096 ./node_modules/.bin/storybook build",
"clear-cache": "npm run clean-cache",
"clean-cache": "rm -rf node_modules/.cache; rm -rf .cache; rm -rf dist; jest --clearCache",
"cloc": "npx cloc --exclude-dir=node_modules,coverage,package-lock.json .",
"prettier": "pretty-quick --staged",
"prepare": "husky",
"codegen": "graphql-codegen --config codegen.ts",
"typechain": "npx typechain --target=ethers-v6 --out-dir=src/generated/types/local src/shared/web3/abis/*.json",
"typechain-hub": "npx typechain --target=ethers-v6 --out-dir=src/generated/types/hub ./node_modules/@streamr/hub-contracts/dist/**/*.json"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint"
],
"*.css": [
"stylelint"
]
},
"author": "",
"license": "UNLICENSED",
"dependencies": {
"@apollo/client": "^3.7.16",
"@atlaskit/icon": "^21.11.5",
"@dataunions/client": "^3.0.12",
"@ensdomains/ens-contracts": "^1.1.4",
"@ibm/plex": "^6.3.0",
"@metamask/detect-provider": "^2.0.0",
"@metamask/providers": "^17.1.2",
"@sambego/storybook-styles": "^1.0.0",
"@sentry/react": "^8.34.0",
"@streamr/config": "^5.4.0",
"@streamr/hub-contracts": "^1.1.2",
"@streamr/sdk": "^101.1.2",
"@streamr/streamr-icons": "^0.1.9",
"@streamr/streamr-layout": "^2.5.3",
"@tanstack/react-query": "^5.51.21",
"axios": "^1.7.4",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"clean-css": "^5.3.2",
"color": "^4.2.3",
"colors": "^1.4.0",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^6.13.1",
"eventemitter3": "^5.0.1",
"events": "^3.3.0",
"file-saver": "^2.0.5",
"graphql": "^16.8.1",
"gsap": "^3.11.5",
"identity-obj-proxy": "^3.0.0",
"immer": "^10.0.2",
"jsdom": "^22.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.44",
"network-contracts-ethers6": "^7.1.1",
"normalizr": "^3.6.2",
"platform": "^1.3.6",
"prop-types": "^15.8.1",
"prosemirror-model": "^1.19.0",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-avatar-editor": "^13.0.2",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-helmet": "^6.1.0",
"react-identicons": "^1.2.5",
"react-image": "^4.1.0",
"react-in-viewport": "0.0.38",
"react-markdown": "^8.0.7",
"react-modal2": "^5.0.2",
"react-notification-system": "^0.4.0",
"react-router-dom": "^6.26.2",
"react-scrollspy": "^3.4.0",
"react-select": "^5.7.3",
"react-syntax-highlighter": "^15.5.0",
"recharts": "^2.7.2",
"resize-observer-polyfill": "^1.5.1",
"rich-markdown-editor": "^11.21.3",
"storybook": "^8.3.3",
"stream-browserify": "^3.0.0",
"streamr-client-protocol": "^13.0.0",
"streamr-client-react": "^3.1.0-internal.5",
"stringify-object": "^5.0.0",
"styled-components": "^5.3.10",
"toasterhea": "^1.0.4",
"toml": "^3.0.0",
"use-debounce": "^10.0.3",
"uuid": "^9.0.0",
"web3-utils": "^4.3.1",
"web3-validator": "^1.0.1",
"yup": "^1.1.1",
"zod": "^3.22.3",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.21.3",
"@babel/plugin-transform-react-display-name": "^7.22.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@babel/runtime": "^7.22.5",
"@chromatic-com/storybook": "^1.9.0",
"@cypress/webpack-preprocessor": "^5.17.1",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@sentry/webpack-plugin": "^2.22.2",
"@storybook/addon-actions": "^8.3.3",
"@storybook/addon-controls": "^8.3.4",
"@storybook/addon-links": "^8.3.3",
"@storybook/addon-viewport": "^8.3.3",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/builder-webpack5": "^8.3.3",
"@storybook/cli": "^8.3.3",
"@storybook/react": "^8.3.3",
"@storybook/react-webpack5": "^8.3.3",
"@storybook/source-loader": "^8.3.3",
"@stylistic/eslint-plugin": "^2.9.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.5.13",
"@types/lunr": "^2.3.4",
"@types/moxios": "^0.4.17",
"@types/node": "^20.3.2",
"@types/react": "^18.2.8",
"@types/react-avatar-editor": "^13.0.3",
"@types/react-dom": "^18.2.17",
"@types/react-helmet": "^6.1.6",
"@types/react-notification-system": "^0.2.42",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"bip39": "^3.1.0",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.30.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"cypress": "^13.6.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-streamr": "1.3.1",
"eslint-config-streamr-ts": "^5.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"esm": "^3.2.25",
"extract-text-webpack-plugin": "^3.0.2",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.6",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"keyv": "^4.5.3",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.5",
"moxios": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"path": "^0.12.7",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"style-loader": "^4.0.0",
"stylelint": "^16.8.2",
"stylelint-config-standard": "^36.0.1",
"terser-webpack-plugin": "^5.3.9",
"toml-loader": "^1.0.0",
"ts-jest": "^29.2.4",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typechain": "^8.3.1",
"typescript": "^5.5.4",
"typescript-plugin-css-modules": "^5.0.1",
"typescript-plugin-styled-components": "^3.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-deadcode-plugin": "^0.1.17",
"webpack-dev-server": "^4.15.0",
"webpack-notifier": "^1.15.0"
}
}