-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "vwbl-sample-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "npx prettier --write .",
"prepare": "husky install",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.2",
"@chakra-ui/next-js": "^2.3.2",
"@chakra-ui/react": "^2.9.3",
"@coinbase/wallet-sdk": "^4.1.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@metamask/providers": "^17.2.1",
"@reown/appkit": "^1.0.6",
"@reown/appkit-adapter-ethers": "^1.0.6",
"@types/crypto-js": "^4.2.2",
"@types/react-pdf": "^7.0.0",
"@types/uuid": "^10.0.0",
"@wojtekmaj/react-hooks": "^1.21.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"ethers": "^6.13.3",
"framer-motion": "^11.10.0",
"next": "^14.2.14",
"next-static-utils": "^1.0.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-pdf": "^9.1.1",
"react-player": "^2.16.0",
"unstated-next": "^1.1.0",
"vwbl-core": "^0.1.0",
"vwbl-sdk": "^0.1.20",
"web3": "^4.13.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "8.x",
"@typescript-eslint/parser": "8.x",
"eslint": "9.x",
"eslint-config-next": "^14.2.14",
"eslint-define-config": "^2.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"resolutions": {
"@types/react": "^17.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --config eslint.config.mjs"
]
},
"packageManager": "yarn@4.0.2"
}