-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 2.64 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
88
89
90
91
92
93
94
95
{
"name": "Blaster",
"version": "0.0.1",
"private": true,
"scripts": {
"clean": "rimraf \"{node_modules,.next,out.cache}\"",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"vercel-build": "prisma generate && next build"
},
"dependencies": {
"@aws-amplify/api": "^5.0.16",
"@headlessui/react": "^1.7.2",
"@hookform/resolvers": "^2.9.8",
"@metaplex-foundation/js": "^0.18.3",
"@next/font": "^13.1.1",
"@prisma/client": "4.10.1",
"@solana/pay": "^0.2.4",
"@solana/wallet-adapter-react-ui": "^0.9.29",
"@solana/wallet-adapter-wallets": "^0.19.15",
"@solana/web3.js": "^1.73.3",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@vercel/analytics": "^0.1.11",
"aws-sdk": "^2.1327.0",
"axios": "^0.27.2",
"bignumber.js": "^9.1.1",
"bs58": "^5.0.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"dayjs": "^1.11.5",
"ethers": "^5.7.1",
"formik": "^2.2.9",
"framer-motion": "^7.3.6",
"jotai": "^1.8.4",
"js-cookie": "^3.0.1",
"little-state-machine": "^4.7.0",
"lodash": "^4.17.21",
"next": "^13.1.1",
"next-auth": "^4.19.2",
"next-pwa": "^5.6.0",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.22",
"next-themes": "^0.2.1",
"nextjs-progressbar": "^0.0.16",
"overlayscrollbars": "^1.13.1",
"overlayscrollbars-react": "^0.3.0",
"rc-slider": "^10.0.1",
"react": "18.2.0",
"react-countdown": "^2.3.2",
"react-datepicker": "^4.10.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.36.0",
"react-loader-spinner": "^5.3.4",
"react-query": "^3.39.2",
"react-share": "^4.4.0",
"react-table": "^7.7.0",
"react-use": "^17.3.2",
"recharts": "2.1.12",
"swiper": "^8.4.2",
"tiny-invariant": "^1.2.0",
"uuid": "^9.0.0",
"web3modal": "^1.9.9",
"yup": "^1.0.0"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/js-cookie": "^3.0.1",
"@types/node": "18.7.18",
"@types/overlayscrollbars": "^1.12.1",
"@types/react": "18.0.20",
"@types/react-table": "^7.7.9",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.12",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"postcss": "^8.4.16",
"prettier": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.10.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4"
},
"engines": {
"node": ">=12.20.0"
}
}