-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
{
"name": "nftreasury",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "next lint",
"lint:es": "eslint --ext .js,.jsx .",
"lint:fix": "eslint --fix --ext .js,.jsx .",
"dev": "next dev -p 4040",
"build": "next build",
"start": "next start",
"clear-all": "rm -rf .next node_modules",
"re-start": "rm -rf .next node_modules && yarn install && yarn dev",
"re-build": "rm -rf .next node_modules && yarn install && yarn build"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.10",
"@iconify/react": "^3.2.0",
"@mui/material": "^5.5.2",
"@react-hook/debounce": "^4.0.0",
"@react-hook/size": "^2.1.2",
"@reduxjs/toolkit": "^1.8.5",
"@thirdweb-dev/auth": "^2.0.39",
"@thirdweb-dev/react": "^3.6.9",
"@thirdweb-dev/sdk": "^3.6.9",
"alchemy-sdk": "^2.2.0",
"apexcharts": "^3.35.2",
"axios": "^0.27.2",
"cookie": "^0.4.2",
"copy-to-clipboard": "^3.3.2",
"date-fns": "^2.28.0",
"ethers": "^5.7.2",
"firebase": "^9.12.1",
"firebase-admin": "^11.2.0",
"framer-motion": "^6.2.8",
"jquery": "^3.6.0",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"jwt-encode": "^1.0.1",
"lodash": "^4.17.21",
"logrocket": "^3.0.1",
"next": "^13.1.1",
"next-seo": "^5.5.0",
"notistack": "^2.0.5",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-copy-to-clipboard": "^5.1.0",
"react-countup": "^6.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.31.1",
"react-identicons": "^1.2.5",
"react-lazy-load-image-component": "^1.5.1",
"react-number-format": "^4.9.3",
"react-redux": "^8.0.4",
"react-scroll": "^1.8.7",
"react-select": "^5.3.2",
"react-slick": "^0.28.1",
"react-stacked-center-carousel": "^1.0.12",
"react-swipeable-views": "^0.14.0",
"react-youtube": "^9.0.1",
"sharp": "^0.31.0",
"simplebar-react": "^2.3.6",
"sleep-promise": "^9.1.0",
"slick-carousel": "^1.8.1",
"swr": "^1.3.0",
"use-local-storage": "^2.3.6",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@faker-js/faker": "^6.3.1",
"@next/eslint-plugin-next": "^12.1.0",
"eslint": "8.11.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-relative-import-paths": "^1.3.3",
"git-cz": "^4.9.0",
"prettier": "^2.6.1",
"typescript": "^4.6.4"
}
}