-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
256 lines (256 loc) · 11.2 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
{
"name": "colony-cdapp",
"private": true,
"version": "5.0.0-alpha.0",
"description": "A interation of the Colony Dapp sporting both a fully decentralized operating mode, as well as a mode enhanced by a metadata caching layer",
"scripts": {
"docker:build:base": "DOCKER_BUILDKIT=1 docker build --build-arg AMAZON_ARCH_FLAG=$(bash scripts/amazon-arch-flag.sh) --tag colony-cdapp-dev-env/base --file ./docker/colony-cdapp-dev-env-base .",
"docker:build:network": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/network --file ./docker/colony-cdapp-dev-env-network .",
"docker:build:monitor": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/reputation-monitor --file ./docker/colony-cdapp-dev-env-reputation-monitor .",
"docker:build:mocking": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/mocking --file ./docker/colony-cdapp-dev-env-mocking .",
"docker:build:ingestor": "DOCKER_BUILDKIT=1 docker build --ulimit nofile=5000:5000 --tag colony-cdapp-dev-env/block-ingestor --file ./docker/colony-cdapp-dev-env-block-ingestor .",
"docker:build:amplify": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/amplify --file ./docker/colony-cdapp-dev-env-amplify .",
"docker:build:safe": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/safe --file ./docker/colony-cdapp-dev-env-safe .",
"docker:build:auth": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/auth-proxy --file ./docker/colony-cdapp-dev-env-auth-proxy .",
"docker:build:bridge": "DOCKER_BUILDKIT=1 docker build --tag colony-cdapp-dev-env/mocking --file ./docker/colony-cdapp-dev-env-mocking .",
"docker:build:core": "npm run docker:build:base && npm run docker:build:network && npm run docker:build:monitor && npm run docker:build:ingestor && npm run docker:build:amplify && npm run docker:build:auth",
"docker:build:all": "npm run docker:build:base && npm run docker:build:network && npm run docker:build:monitor && npm run docker:build:ingestor && npm run docker:build:amplify && npm run docker:build:auth && npm run docker:build:mocking",
"docker:compose:core": "docker compose --file docker/colony-cdapp-dev-env-orchestration.yaml",
"docker:compose:all": "docker compose --file docker/colony-cdapp-dev-env-orchestration-all.yaml",
"dev": "npm run watch-amplify & npm run generate-notifications-dev-key && npm run docker:build:core && npm run docker:compose:core up -- --force-recreate -V",
"dev:all": "npm run generate-notifications-dev-key && npm run docker:build:all && npm run docker:compose:all up -- --force-recreate -V",
"lint": "eslint src playwright --fix --ext ts,tsx --report-unused-disable-directives",
"lint:ci": "eslint src playwright --ext ts,tsx --report-unused-disable-directives",
"stylelint:ci": "stylelint --allow-empty-input \"src/**/*.css\"",
"typecheck": "tsc --noEmit",
"frontend": "ulimit -n 2048 && vite",
"frontend:safe": "SAFE_ENABLED=true ulimit -n 2048 && vite",
"build": "vite build",
"hardhat": "docker exec -e DISABLE_DOCKER=true -it network bash -c \". /root/.nvm/nvm.sh && cd colonyNetwork && npx hardhat console --network localhost\"",
"hardhat:cmd": "./scripts/hardhat-cmd.js",
"truffle": "echo 'Please use `npm run hardhat` instead of `npm run truffle`'",
"amplify": "amplify",
"codegen": "node codegen",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=f08326e25dbf",
"upgrade-colony-js": "./scripts/upgrade-colony-js.sh",
"prepare": "if [ -z \"$SKIP_HOOKS\" ]; then import-meta-env-prepare -x .env.example -p .env.local .env.local.secrets && import-meta-env-typescript -x .env.example -o src/typedefs; fi",
"postinstall": "if [ -z \"$SKIP_HOOKS\" ]; then ./scripts/lambda-functions-dependencies.sh && scripts/generate-amplify-local-config.sh; fi",
"watch-amplify": "node scripts/watchAmplifyFiles",
"forward-time": "node scripts/forward-time",
"e2e:install": "npx playwright install --with-deps",
"e2e": "playwright test --project=chromium",
"e2e:ui": "playwright test --ui",
"generate-notifications-dev-key": "node scripts/generate-local-notifications-key"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyCDapp.git"
},
"bugs": {
"url": "https://github.com/JoinColony/colonyCDapp/issues"
},
"homepage": "https://colony.io",
"devDependencies": {
"@aws-amplify/cli": "10.8.1",
"@colony/eslint-config-colony": "^10.0.0",
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-operations": "^2.5.6",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"@import-meta-env/cli": "^0.6.8",
"@import-meta-env/prepare": "^0.1.14",
"@import-meta-env/typescript": "^0.3.3",
"@import-meta-env/unplugin": "^0.5.1",
"@jackfranklin/test-data-bot": "^1.4.0",
"@jest/globals": "^29.0.2",
"@limegrass/eslint-plugin-import-alias": "^1.4.1",
"@playwright/test": "^1.48.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-onboarding": "^8.0.0",
"@storybook/addon-themes": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@swc/core": "^1.4.17",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.9",
"@types/dompurify": "^3.0.5",
"@types/enzyme": "^3.10.3",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.150",
"@types/nanoid": "^2.0.0",
"@types/node": "^20.11.15",
"@types/pica": "^9.0.1",
"@types/react": "^18.0.10",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-datepicker": "^4.19.6",
"@types/react-dom": "^18.0.5",
"@types/react-modal": "^3.13.1",
"@types/react-portal": "^4.0.4",
"@types/recompose": "^0.30.0",
"@types/yup": "^0.29.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.16",
"compare-versions": "^6.1.0",
"cross-fetch": "^4.0.0",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.4.5",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-playwright": "^1.7.0",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.8.0",
"ganache-cli": "^6.12.0",
"ganache-core": "^2.13.0",
"get-tsconfig": "^4.7.2",
"husky": "^4.0.0",
"ipfs": "^0.43.1",
"jest": "^29.7.0",
"jest-enzyme": "^7.0.2",
"jest-sandbox": "^1.1.2",
"lint-staged": "^10.2.1",
"minimatch": "^9.0.3",
"minimist": "^1.2.8",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"postcss-svg": "^3.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"storybook": "^8.0.0",
"storybook-addon-apollo-client": "^6.0.0",
"storybook-react-intl": "^3.0.1",
"stylelint": "^13.3.3",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^4.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"ts-morph": "^21.0.1",
"typescript": "5.0.4",
"utility-types": "^3.7.0",
"vite": "^5.3.1",
"vite-plugin-node-polyfills": "^0.19.0",
"vite-plugin-svgr": "^4.2.0"
},
"dependencies": {
"@apollo/client": "3.7.14",
"@colony/abis": "1.5.0",
"@colony/colony-js": "^7.2.0",
"@colony/events": "3.0.0",
"@colony/redux-promise-listener": "^1.2.0",
"@colony/unicode-confusables-noascii": "^0.1.2",
"@hookform/resolvers": "^2.9.10",
"@magicbell/react-headless": "^5.0.1",
"@nivo/arcs": "^0.87.0",
"@nivo/axes": "^0.87.0",
"@nivo/bar": "^0.87.0",
"@nivo/core": "^0.87.0",
"@nivo/pie": "^0.87.0",
"@nivo/tooltip": "^0.87.0",
"@phosphor-icons/react": "^2.1.5",
"@popperjs/core": "^2.3.3",
"@tanstack/react-table": "^8.10.0",
"@tiptap/extension-blockquote": "^2.0.4",
"@tiptap/extension-bold": "^2.0.4",
"@tiptap/extension-bubble-menu": "^2.1.11",
"@tiptap/extension-character-count": "^2.0.4",
"@tiptap/extension-color": "^2.0.4",
"@tiptap/extension-document": "^2.0.4",
"@tiptap/extension-heading": "^2.0.4",
"@tiptap/extension-highlight": "^2.0.4",
"@tiptap/extension-paragraph": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/extension-text": "^2.0.4",
"@tiptap/extension-text-style": "^2.0.4",
"@tiptap/extension-underline": "^2.0.4",
"@tiptap/html": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/react": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@web3-onboard/common": "^2.2.3",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/injected-wallets": "^2.2.4",
"@xobotyi/scrollbar-width": "^1.9.5",
"aws-appsync-auth-link": "^3.0.7",
"aws-appsync-subscription-link": "^3.1.3",
"bn.js": "^5.1.1",
"camelcase": "^6.0.0",
"chokidar": "^3.6.0",
"cleave-zen": "^0.0.17",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.0.8",
"date-fns": "^2.30.0",
"decimal.js": "^10.2.1",
"dompurify": "^3.0.8",
"embla-carousel-react": "^8.0.0-rc11",
"eth-ens-namehash-ms": "^2.2.0",
"ethers": "^5.6.8",
"exponential-backoff": "^3.1.1",
"framer-motion": "^10.12.4",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"html-react-parser": "^3.0.8",
"i18n-iso-countries": "^7.11.2",
"image-blob-reduce": "^4.1.0",
"immutable": "^4.1.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"move-decimal-point": "^0.0.4",
"nanoid": "^3.1.31",
"node-fetch": "^2.6.7",
"numbro": "^2.3.6",
"papaparse": "^5.4.1",
"path-browserify": "^1.0.1",
"persona": "^5.1.0",
"posthog-js": "^1.141.3",
"rc-slider": "^9.7.1",
"react": "^18.2.0",
"react-datepicker": "^4.25.0",
"react-dom": "^18.1.0",
"react-dropzone": "^14.2.1",
"react-helmet-async": "^2.0.3",
"react-hook-form": "^7.45.2",
"react-hooks-visible": "^1.1.1",
"react-intersection-observer": "^9.8.2",
"react-intl": "^6.6.1",
"react-modal": "^3.15.1",
"react-popper": "^2.3.0",
"react-popper-tooltip": "^4.4.2",
"react-portal": "^4.2.2",
"react-redux": "^8.0.2",
"react-responsive": "^9.0.0",
"react-responsive-masonry": "^2.1.7",
"react-router-dom": "^6.4.2",
"react-select": "^5.8.0",
"react-tabs": "^5.1.0",
"react-tabs-scrollable": "^2.0.0-alpha",
"react-toastify": "^9.1.2",
"redux": "^4.2.0",
"redux-immutable": "^4.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.1.5",
"resolve": "^1.22.8",
"siwe": "^2.1.4",
"use-local-storage": "^3.0.0",
"yup": "^0.30.0"
}
}