-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
87 lines (87 loc) · 2.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "chakra-nextjs-ts",
"version": "1.0.9",
"private": "true",
"bugs": {
"url": "https://github.com/chakra-ui/chakra-ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/chakra-ui/chakra-ui.git",
"directory": "examples/nextjs-typescript"
},
"license": "MIT",
"scripts": {
"build": "next build",
"compile-contract-types": "typechain --target ethers-v6 --out-dir 'src/contracts/types' 'src/contracts/*.json'",
"dev": "next dev",
"postinstall": "yarn compile-contract-types",
"lint": "eslint src **/*.ts **/*.tsx",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@chakra-ui/icons": "2.0.19",
"@chakra-ui/react": "2.7.1",
"@chakra-ui/system": "^2.5.8",
"@chakra-ui/theme-tools": "2.0.18",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@metamask/onboarding": "^1.0.1",
"@rainbow-me/rainbowkit": "^1.0.6",
"@rainbow-me/rainbowkit-siwe-next-auth": "^0.2.0",
"@types/jsonp": "^0.2.1",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@wagmi/core": "^1.3.8",
"add": "^2.0.6",
"axios": "^1.4.0",
"ethers": "^6.6.4",
"eventbrite": "^1.3.0",
"framer-motion": "^10.12.22",
"iron-session": "^6.3.1",
"jsonp": "^0.2.1",
"next": "^13.4.10",
"next-auth": "^4.22.1",
"prettier": "^3.0.0",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"siwe": "^2.1.4",
"swr": "^2.2.0",
"typechain": "^8.3.0",
"typescript": "^5.1.6",
"viem": "^1.3.0",
"wagmi": "^1.3.9",
"yarn": "^1.22.19"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.10",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typechain/ethers-v6": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/typescript-estree": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0"
}
}