-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.74 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.74 KB
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
{
"name": "manyuses-interface",
"version": "1.0.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true yarn build && serve .next -n",
"dev": "next dev",
"inspect": "NODE_OPTIONS='--inspect' next dev",
"build": "yarn lingui && next build",
"start": "next start",
"lingui": "yarn lingui:extract && yarn lingui:compile",
"lingui:extract": "lingui extract --clean",
"lingui:compile": "lingui compile",
"circular": "madge --circular src --extensions ts,tsx,js,jsx",
"unused": "next-unused",
"prepare": "husky install",
"pre-commit": "lint-staged",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "next lint"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{md,css}": "prettier --write"
},
"dependencies": {
"@binance-chain/bsc-connector": "^1.0.0",
"@ethereumjs/common": "^2.3.0",
"@ethereumjs/tx": "^3.2.0",
"@fontsource/work-sans": "^4.4.5",
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"@lingui/core": "^3.10.0",
"@lingui/detect-locale": "^3.10.0",
"@lingui/react": "^3.10.0",
"@popperjs/core": "^2.9.2",
"@reach/dialog": "^0.15.0",
"@reduxjs/toolkit": "^1.5.1",
"@sushiswap/sdk": "5.0.0-canary.22",
"@transak/transak-sdk": "^1.0.28",
"@web3-react/core": "^6.1.9",
"@web3-react/fortmatic-connector": "^6.1.6",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/lattice-connector": "^6.1.9",
"@web3-react/portis-connector": "^6.1.9",
"@web3-react/torus-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "^6.2.0",
"@web3-react/walletlink-connector": "^6.2.0",
"copy-to-clipboard": "^3.3.1",
"ethers": "^5.1.4",
"graphql-request": "^3.4.0",
"lottie-react": "^2.1.0",
"next": "^11.0.0",
"next-pwa": "^5.2.21",
"numeral": "^2.0.6",
"polished": "^4.1.2",
"react": "^17.0.2",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-ga": "^3.3.0",
"react-popper": "^2.2.5",
"react-redux": "^7.2.4",
"react-spring": "^8.0.27",
"react-tabs": "^3.2.2",
"react-use-gesture": "^9.1.3",
"redux-localstorage-simple": "^2.4.0",
"styled-components": "^5.3.0",
"swr": "^0.5.6",
"tailwindcss": "2.1.4"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@ethersproject/abi": "^5.3.1",
"@ethersproject/bignumber": "^5.3.0",
"@ethersproject/contracts": "^5.3.0",
"@ethersproject/providers": "^5.3.1",
"@lingui/cli": "^3.10.0",
"@lingui/loader": "^3.10.0",
"@lingui/macro": "^3.10.0",
"@next/bundle-analyzer": "^10.2.3",
"@ramp-network/ramp-instant-sdk": "^2.4.3",
"@tailwindcss/jit": "^0.1.18",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-macros": "^3.0.1",
"babel-plugin-styled-components": "^1.12.0",
"cookie-cutter": "^0.2.0",
"eslint": "^7.28.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fathom-client": "^3.0.0",
"graphql-tag": "^2.12.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"madge": "^4.0.2",
"next-unused": "^0.0.6",
"postcss": "^8.3.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.1",
"redux": "^4.1.0",
"serve": "^11.3.2",
"tailwindcss-border-gradient-radius": "^2.0.0",
"typescript": "^4.3.2"
},
"next-unused": {
"debug": true,
"include": [
"src"
],
"exclude": [],
"entrypoints": [
"src/pages"
]
}
}