-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "contractful-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"pre-commit": "npx next lint && npx tsc --noEmit --pretty"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.11",
"@mui/x-date-pickers": "^5.0.6",
"@rainbow-me/rainbowkit": "^0.7.4",
"@types/crypto-js": "^4.1.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.6",
"ethers": "^5.7.2",
"minimist": "^1.2.7",
"mui": "^0.0.1",
"next": "12.3.1",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2",
"wagmi": "0.7.5",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@types/node": "17.0.2",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"husky": "^8.0.2",
"typescript": "4.8.4"
}
}