-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "nextjs-template",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icon": "^3.0.15",
"@chakra-ui/icons": "2.0.19",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/system": "2.5.7",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/noto-sans": "^5.0.1",
"@fontsource/roboto-mono": "^5.0.1",
"@hookform/resolvers": "^3.1.0",
"@web3-onboard/coinbase": "^2.2.0",
"@web3-onboard/core": "^2.20.3",
"@web3-onboard/injected-wallets": "^2.10.1",
"@web3-onboard/react": "^2.8.8",
"@web3-onboard/walletconnect": "^2.3.9",
"axios": "^1.4.0",
"chakra-react-select": "^4.6.0",
"chart.js": "^4.3.0",
"emoji-picker-react": "^4.4.9",
"ethers": "^5.7.2",
"framer-motion": "^10.12.13",
"fuse.js": "^6.5.3",
"governator-sdk": "^1.0.8",
"jotai": "^2.0.4",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"moment": "^2.29.4",
"next": "13.4.3",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^4.6.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.3.1",
"react-table": "^7.7.0",
"siwe": "^2.0.3",
"swr": "^2.1.5",
"uuid": "^9.0.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@types/luxon": "^3.3.0",
"@types/node": "^18.16.14",
"@types/react": "^18.2.6",
"@types/react-datepicker": "^4.3.4",
"@types/react-table": "^7.7.10",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-testing-library": "^5.0.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.5.1",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix",
"jest -b --silent --findRelatedTests"
]
}
}