-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "voltagedefi-analytics",
"version": "1.0.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.2.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.0",
"@material-ui/lab": "4.0.0-alpha.57",
"@visx/axis": "^1.1.0",
"@visx/brush": "^1.1.0",
"@visx/curve": "^1.0.0",
"@visx/event": "^1.0.0",
"@visx/gradient": "^1.0.0",
"@visx/grid": "^1.1.0",
"@visx/legend": "^1.1.0",
"@visx/marker": "^1.1.0",
"@visx/mock-data": "^1.0.0",
"@visx/pattern": "^1.1.0",
"@visx/react-spring": "^1.1.0",
"@visx/responsive": "^1.1.0",
"@visx/scale": "^1.1.0",
"@visx/threshold": "^1.1.0",
"@visx/tooltip": "^1.1.0",
"@voltage-finance/sdk": "^1.0.0",
"autosuggest-highlight": "^3.1.1",
"bignumber.js": "^9.0.2",
"clsx": "latest",
"d3-array": "^2.8.0",
"d3-time-format": "^3.0.0",
"date-fns": "^2.16.1",
"dayjs": "^1.10.5",
"ethers": "^5.6.9",
"graphql": "^15.3.0",
"lodash.merge": "^4.6.2",
"millify": "^3.3.0",
"next": "12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-sparklines": "^1.7.0",
"react-spring": "^8.0.27",
"react-window": "^1.8.6",
"web3-utils": "^1.3.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.5.3",
"mustache": "^4.2.0",
"next-compose-plugins": "^2.2.0"
},
"scripts": {
"prepare:avax": "mustache src/config/avax.json src/config/index.template.ts > src/config/index.ts",
"prepare:rinkeby": "mustache src/config/rinkeby.json src/config/index.template.ts > src/config/index.ts",
"analyze": "ANALYZE=true yarn build",
"analyze-serve": "serve .next/analyze -p 3002",
"dev": "next -p 3001",
"build": "next build",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}