-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.49 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
{
"name": "aura-analytics",
"description": "Aura Analytics Interface",
"version": "0.1.0",
"engines": {
"node": ">=16.14.0 <17.0.0"
},
"private": true,
"dependencies": {
"@apollo/client": "^3.7.16",
"@balancer-labs/sdk": "^1.1.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/fragment-matcher": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.0",
"@graphql-codegen/schema-ast": "^4.0.0",
"@graphql-codegen/typescript-document-nodes": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.13.3",
"@mui/x-date-pickers-pro": "^5.0.15",
"@rainbow-me/rainbowkit": "^1.1.2",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/identicon.js": "^2.3.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@uniswap/sdk-core": "^4.0.6",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@web3-react/core": "^6.1.9",
"@wagmi/chains": "^1.8.0",
"alchemy-sdk": "^2.8.3",
"apollo": "^2.34.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-link-http": "^1.5.17",
"axios": "^1.4.0",
"dayjs": "^1.11.8",
"dayjs-plugin-utc": "^0.1.2",
"dotenv": "^16.1.3",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"ethereum-multicall": "^2.17.0",
"ethers": "^5.7.2",
"firebase": "^9.22.1",
"firebase-tools": "12.7.0",
"graphql-tag": "^2.12.6",
"identicon.js": "^2.3.3",
"jsbi": "^4.3.0",
"json-loader": "^0.5.7",
"node-vibrant": "^3.2.1-alpha.1",
"numbro": "^2.3.6",
"polished": "^4.2.2",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-redux": "^8.0.7",
"react-router-dom": "^6.11.2",
"react-scripts": "^5.0.1",
"redux-localstorage-simple": "^2.5.1",
"styled-components": "^5.3.11",
"typescript": "^4.9.4",
"universal-cookie": "^4.0.4",
"utc": "^0.1.0",
"viem": "^0.3.49",
"wagmi": "^1.4.4",
"wcag-contrast": "^3.0.0",
"web-vitals": "^3.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"generate": "graphql-codegen --config codegen.yml -r dotenv/config",
"codegen:schema": "npx apollo client:download-schema --endpoint=https://api.thegraph.com/subgraphs/name/ianlapham/uniswap-v3-rinkeby",
"codegen:generate": "apollo codegen:generate --localSchemaFile=schema.json --target=typescript --includes=src/**/*.ts --tagName=gql --addTypename --globalTypesFile=src/types/graphql-global-types.ts types --debug"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@types/react-csv": "^1.1.3",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
}
}