-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "shardeum-bp",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"prettier": "prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@davatar/react": "^1.9.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@ethersproject/units": "^5.5.0",
"@heroicons/react": "^1.0.5",
"@rainbow-me/rainbowkit": "^0.4.1",
"ethers": "^5.5.4",
"framer-motion": "^6.3.0",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-social-icons": "^5.11.0",
"wagmi": "^0.5.8",
"web3": "^1.7.0"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"autoprefixer": "^10.4.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,jsx}": "prettier --write"
}
}