-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
153 lines (153 loc) · 5.4 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
{
"name": "aave-ui",
"version": "1.0.0",
"private": true,
"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",
"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": "next lint",
"lint:fix": "next lint --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",
"pre-commit": "lint-staged && yarn i18n && git add ./src/locales",
"prepare": "husky install",
"gql-gen": "graphql-codegen --config codegen.yml",
"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": "1.5.1",
"@aave/math-utils": "1.5.1",
"@apollo/client": "^3.5.10",
"@emotion/cache": "11.9.3",
"@emotion/react": "11.9.3",
"@emotion/server": "latest",
"@emotion/styled": "11.9.3",
"@gnosis.pm/safe-apps-web3-react": "^1.2.0",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript-operations": "^2.3.2",
"@graphql-codegen/typescript-react-apollo": "^3.2.8",
"@heroicons/react": "^1.0.6",
"@lingui/react": "^3.13.2",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"@paraswap/sdk": "5.6.0-alpha.3",
"@visx/axis": "^2.6.0",
"@visx/curve": "^2.1.0",
"@visx/event": "^2.6.0",
"@visx/gradient": "^2.1.0",
"@visx/grid": "^2.6.0",
"@visx/legend": "^2.2.2",
"@visx/mock-data": "^2.1.2",
"@visx/responsive": "^2.8.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.4.0",
"@visx/tooltip": "^2.8.0",
"@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/walletconnect-connector": "^7.0.2-alpha.0",
"@web3-react/walletlink-connector": "^6.2.14",
"d3-array": "^3.1.1",
"d3-time-format": "^4.1.0",
"dayjs": "^1.11.3",
"eth-provider": "^0.10.0",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "^5.5.4",
"graphql": "^16.2.0",
"graphql-ws": "^5.6.2",
"gray-matter": "^4.0.3",
"lowdb": "^3.0.0",
"next": "12.1.0",
"paraswap-core": "^1.0.2",
"react": "latest",
"react-dom": "latest",
"react-markdown": "^8.0.1",
"react-number-format": "^4.9.1",
"reflect-metadata": "^0.1.13",
"remark-gfm": "^3.0.1",
"subscriptions-transport-ws": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@ethersproject/experimental": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@lingui/cli": "^3.13.2",
"@lingui/macro": "^3.13.2",
"@next/bundle-analyzer": "^12.1.0",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/d3-array": "^3.0.2",
"@types/d3-time-format": "^4.0.0",
"@types/lodash": "^4.14.179",
"@types/react": "latest",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"axios": "^0.26.0",
"babel-loader": "^8.2.5",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"cypress": "10.7.0",
"cypress-repeat": "^2.3.1",
"cypress-wait-until": "^1.7.2",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"html-webpack-plugin": "5",
"husky": ">=6",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^12.3.6",
"prettier": "^2.6.0",
"typescript": "^4.6.2"
},
"resolutions": {
"@web3-react/walletlink-connector/@coinbase/wallet-sdk": "3.1.0"
},
"contributors": [
"Pol Sendra <[email protected]>",
"Lukas Strassel <[email protected]>",
"Oleksandr Tkach <[email protected]>",
"David Racero <[email protected]>",
"Andrew Schmidt <[email protected]>",
"Mark Hinschberger <[email protected]>",
"Nikita Bokarev <[email protected]>",
"Anastasia Khovaeva <[email protected]>",
"Diego Prudencio [email protected]"
],
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.jsx": "eslint --cache --fix",
"*.ts": "eslint --cache --fix",
"*.tsx": "eslint --cache --fix",
"*.svg": "npx svgo --final-newline"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}