-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.66 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
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"build-static": "next build && next export",
"start": "next start",
"type-check": "tsc",
"lint": "eslint .",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"eslint",
"prettier -c"
]
},
"dependencies": {
"@matejmazur/react-katex": "^3.1.3",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.0.6",
"@react-three/fiber": "^6.0.17",
"@types/lodash": "^4.14.168",
"@uniswap/default-token-list": "^2.0.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^1.0.10",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^1.0.9",
"@uniswap/v3-sdk": "^1.0.3",
"@vanilladefi/sdk": "^1.1.8",
"@walletconnect/web3-provider": "^1.5.3",
"classnames": "^2.2.6",
"date-fns": "^2.21.1",
"dom-to-image": "^2.6.0",
"ethers": "^5.4.4",
"framer-motion": "^3.3.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"jsbi": "^3.1.4",
"keccak256": "^1.0.2",
"lerp": "^1.0.3",
"lodash.debounce": "^4.0.8",
"merkletreejs": "^0.2.18",
"next": "^11.1.0",
"node-vibrant": "3.1.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropdown": "^1.9.2",
"react-feather": "^2.0.9",
"react-intersection-observer": "^8.31.0",
"react-parallax-tilt": "^1.4.82",
"react-svg-pathline": "^0.5.0",
"react-table": "^7.6.2",
"recoil": "^0.1.2",
"recoil-persist": "^2.2.0",
"rehype-katex": "^3.0.1",
"remark-autolink-headings": "^6.0.1",
"remark-math": "^3.0.1",
"remark-slug": "^6.0.0",
"simplex-noise": "^2.4.0",
"swr": "^1.1.2-beta.0",
"three": "^0.125.2",
"three.meshline": "^1.3.0",
"use-wallet": "^0.9.0",
"web3": "^1.5.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.0",
"@typechain/ethers-v5": "^7.0.0",
"@types/dom-to-image": "^2.6.2",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^12.19.16",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-table": "^7.0.28",
"@types/styled-jsx": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typechain": "^5.0.0",
"typescript": "^4.1.5"
},
"license": "MIT"
}