-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
156 lines (156 loc) · 5.71 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
{
"name": "aave-ui",
"version": "1.0.0",
"private": true,
"license": "BSD-3-Clause",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true yarn build",
"build:static": "next build && next export",
"build:optimize-svgs": "find public -type f -name '*.svg' -print0 | xargs -0 -n 1 -P 6 npx svgo --final-newline",
"build:populate-cache": "npx esbuild src/static-build/populateCache.ts --tsconfig=./tsconfig.json --bundle --outfile=scripts/populate-cache.js --platform=node --target=es6",
"cache:update": "yarn build:populate-cache && CACHE_PATH=../src/static-build node scripts/populate-cache.js",
"serve:static": "npx serve out",
"export": "next export",
"start": "next start",
"lint:code": "next lint --dir src --dir pages",
"lint:code:fix": "next lint --dir src --dir pages --fix",
"lint:formatting": "prettier src pages scripts cypress . --check",
"lint:formatting:fix": "prettier src pages scripts cypress . --write",
"lint": "yarn lint:code && yarn lint:formatting",
"lint:fix": "yarn lint:code:fix && yarn lint:formatting:fix",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest",
"i18n:extract": "NODE_ENV=development lingui extract --clean --overwrite --locale en",
"i18n:compile": "lingui compile",
"i18n": "yarn i18n:extract && yarn i18n:compile",
"test:open": "DOTENV_CONFIG_PATH='.env.local' cypress open",
"test:headless": "DOTENV_CONFIG_PATH='.env.local' cypress run",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@aave/contract-helpers": "npm:@marsfoundation/contract-helpers@1.13.7",
"@aave/math-utils": "^1.13.5",
"@bgd-labs/aave-address-book": "^1.13.1",
"@emotion/cache": "11.10.3",
"@emotion/react": "11.10.4",
"@emotion/server": "latest",
"@emotion/styled": "11.10.4",
"@gnosis.pm/safe-apps-web3-react": "^1.2.0",
"@heroicons/react": "^1.0.6",
"@lingui/react": "^3.14.0",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.9",
"@paraswap/sdk": "5.6.0-alpha.3",
"@visx/axis": "^2.14.0",
"@visx/curve": "^2.1.0",
"@visx/event": "^2.6.0",
"@visx/gradient": "^2.10.0",
"@visx/grid": "^2.12.2",
"@visx/legend": "^2.10.0",
"@visx/mock-data": "^2.15.1",
"@visx/responsive": "^2.10.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.12.2",
"@visx/tooltip": "^2.16.0",
"@walletconnect/ethereum-provider": "^2.8.4",
"@walletconnect/modal": "^2.5.6",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/frame-connector": "^6.0.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/torus-connector": "^6.2.9",
"@web3-react/types": "^6.0.7",
"@web3-react/walletlink-connector": "^6.2.14",
"d3-array": "^3.2.0",
"d3-time-format": "^4.1.0",
"dayjs": "^1.11.5",
"eth-provider": "^0.10.0",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "^5.5.4",
"fuse.js": "^6.6.2",
"gray-matter": "^4.0.3",
"immer": "^9.0.15",
"lowdb": "^3.0.0",
"next": "12.1.1",
"paraswap-core": "^1.0.2",
"react": "latest",
"react-dom": "latest",
"react-infinite-scroller": "^1.2.6",
"react-markdown": "^8.0.3",
"react-number-format": "^4.9.1",
"reflect-metadata": "^0.1.13",
"remark-gfm": "^3.0.1",
"web3-ledgerhq-frame-connector": "^1.0.1",
"zustand": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@ethersproject/experimental": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@lingui/cli": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@next/bundle-analyzer": "^12.1.0",
"@svgr/webpack": "^6.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/d3-array": "^3.0.3",
"@types/d3-time-format": "^4.0.0",
"@types/lodash": "^4.14.186",
"@types/react": "latest",
"@types/react-infinite-scroller": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"cypress": "10.9.0",
"cypress-repeat": "^2.3.3",
"cypress-wait-until": "^1.7.2",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"html-webpack-plugin": "5",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"resolutions": {
"@web3-react/walletlink-connector/@coinbase/wallet-sdk": "3.1.0"
},
"contributors": [
"Anastasia Khovaeva <anastasia@aave.com>",
"Andrew Schmidt <andrew@aave.com>",
"Bojan Kopunovic Legetin <bojan@aave.com>",
"David Racero <david.k@aave.com>",
"Diego Prudencio <diego@aave.com>",
"Drew Cook <drew.c@aave.com>",
"Lukas Strassel <lukas@aave.com>",
"Mark Grothe <mark.g@aave.com",
"Mark Hinschberger <mark@aave.com>",
"Nikita Bokarev <nikita@aave.com>",
"Oleksandr Tkach <oleksandr@aave.com>",
"Pol Sendra <pol@aave.com>",
"Vladimir Konstantinovich Yumatov <vladimir@aave.com>"
],
"lint-staged": {
"!(.prettierignore)*.*": "yarn lint:fix",
"*.svg": "npx svgo --final-newline"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}