-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "eth-dash-extension",
"version": "0.1.0",
"private": true,
"author": "mfbevan",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:extension": "next build && next export && mv ./out/_next ./out/next && cd ./out && grep -rli '_next' * | xargs -I@ sed -i '' 's|/_next|/next|g' @;",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.11",
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/font": "^13.0.1",
"@types/node": "18.11.9",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@vercel/analytics": "^0.1.3",
"axios": "^1.4.0",
"ethers": "^6.3.0",
"framer-motion": "^7.6.4",
"http-errors": "^2.0.0",
"next": "13.0.1",
"next-connect": "0.13.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-query": "^3.39.3",
"typescript": "4.8.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/chrome": "^0.0.236",
"@types/firefox-webext-browser": "^111.0.1",
"@types/http-errors": "^2.0.1",
"eslint": "8.26.0",
"eslint-config-next": "13.0.1"
},
"proxy": "https://api.ethdash.xyz"
}