-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 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": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-staged": "lint-staged",
"postinstall": "prisma generate"
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@as-integrations/next": "^2.0.2",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@next/font": "^14.2.13",
"@prisma/client": "^5.3.1",
"@project-serum/anchor": "^0.25.0",
"@solana/wallet-adapter-base": "^0.9.16",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-wallets": "^0.18.10",
"@solana/web3.js": "^1.95.3",
"@types/node": "20.7.1",
"@types/react": "18.2.23",
"@types/react-dom": "18.2.8",
"@vercel/blob": "^0.24.0",
"@web3modal/wagmi": "^5.1.11",
"autoprefixer": "10.4.16",
"bcrypt": "^5.1.1",
"cross-env": "^7.0.3",
"eslint": "8.50.0",
"eslint-config-next": "13.5.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "^5.6.4",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"next": "13.5.3",
"next-auth": "^4.24.5",
"nodemailer": "^6.9.8",
"npm-run-all": "^4.1.5",
"postcss": "8.4.31",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-modal": "^3.16.1",
"react-select": "^5.8.0",
"resend": "^1.1.0",
"tailwindcss": "3.3.3",
"tweetnacl": "^1.0.3",
"twilio": "^4.18.1",
"typescript": "5.2.2",
"urql": "^4.0.5",
"validator": "^13.11.0",
"viem": "^2.21.23",
"wagmi": "^2.12.17",
"web3": "^4.13.0",
"web3modal": "^1.9.12"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/js-cookie": "^3.0.4",
"@types/jsonwebtoken": "^9.0.3",
"@types/next-auth": "^3.15.0",
"@types/nodemailer": "^6.4.14",
"@types/react-modal": "^3.16.3",
"@types/validator": "^13.11.2",
"encoding": "^0.1.13",
"lint-staged": "^14.0.1",
"prisma": "^5.3.1"
}
}