-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.59 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
{
"name": "extended",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"open-browser": "open http://localhost:3000",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"export": "next export",
"lint": "eslint . --ext .js",
"lintfix": "eslint . --ext .js --fix"
},
"dependencies": {
"@artsy/fresnel": "^3.2.1",
"@headlessui/react": "^1.4.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@walletconnect/qrcode-modal": "^1.7.0",
"@web3-react-fork/core": "^2.0.5",
"@web3-react-fork/injected-connector": "^2.0.5",
"@web3-react-fork/network-connector": "^2.0.5",
"@web3-react-fork/types": "^2.0.5",
"@web3-react-fork/walletconnect-connector": "^2.0.5",
"autoprefixer": "^10.4.1",
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"dotenv-webpack": "^7.0.3",
"ethcall": "^4.3.0",
"ethers": "^5.5.2",
"next": "12.0.7",
"next-seo": "^4.28.1",
"nprogress": "^0.2.0",
"postcss": "^8.4.5",
"react": "17.0.2",
"react-autowidth-input": "^1.0.5",
"react-confetti": "^6.0.1",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-share": "^4.4.0",
"swr": "^1.1.2",
"tailwindcss": "^3.0.11"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.7",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^3.3.7",
"madge": "^5.0.1"
}
}