-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.24 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
{
"name": "balancer-analytics",
"description": "Balancer Analytics Interface",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.4",
"@balancer-labs/sdk": "^1.1.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@graphql-codegen/add": "^3.2.3",
"@graphql-codegen/fragment-matcher": "^3.3.3",
"@graphql-codegen/schema-ast": "^2.6.1",
"@graphql-codegen/typescript-document-nodes": "^2.3.12",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@mui/x-date-pickers-pro": "^5.0.15",
"@reduxjs/toolkit": "^1.9.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/identicon.js": "^2.3.1",
"@types/jest": "^29.2.6",
"@types/luxon": "^3.3.2",
"@types/node": "^18.11.18",
"@types/papaparse": "^5.3.10",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@uniswap/sdk-core": "^3.1.1",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@web3-react/core": "^6.1.9",
"apollo": "^2.34.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-link-http": "^1.5.17",
"axios": "^1.2.3",
"dayjs": "^1.11.7",
"dayjs-plugin-utc": "^0.1.2",
"dotenv": "^16.0.3",
"echarts": "^5.4.1",
"echarts-for-react": "^3.0.2",
"ethers": "^5.7.2",
"firebase": "^9.22.1",
"firebase-tools": "^11.21.0",
"graphql-tag": "^2.12.6",
"identicon.js": "^2.3.3",
"jsbi": "^4.3.0",
"json-loader": "^0.5.7",
"luxon": "^3.4.2",
"node-vibrant": "^3.2.1-alpha.1",
"numbro": "^2.3.6",
"papaparse": "^5.4.1",
"polished": "^4.2.2",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.7.0",
"react-scripts": "5.0.1",
"redux-localstorage-simple": "^2.5.1",
"styled-components": "^5.3.6",
"typescript": "^4.9.4",
"universal-cookie": "^4.0.4",
"wcag-contrast": "^3.0.0",
"web-vitals": "^3.1.1"
},
"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"
},
"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": "^2.16.4",
"@types/react-csv": "^1.1.3"
}
}