forked from tyirenkyi/epic-sol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.58 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.58 KB
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
{
"name": "mlhhack",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"prisma:generate": "prisma generate"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@metaplex/js": "^4.12.0",
"@mui/material": "^5.4.0",
"@next-auth/prisma-adapter": "^1.0.1",
"@prisma/client": "^3.9.0",
"@project-serum/anchor": "^0.20.1",
"@solana/buffer-layout": "^4.0.0",
"@solana/pay": "^0.1.0",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-base": "^0.9.3",
"@solana/wallet-adapter-react": "^0.15.3",
"@solana/wallet-adapter-react-ui": "^0.9.5",
"@solana/wallet-adapter-wallets": "^0.15.2",
"@solana/web3.js": "^1.32.2",
"@tailwindcss/line-clamp": "^0.3.1",
"axios": "^0.25.0",
"bignumber.js": "^9.0.2",
"cors": "^2.8.5",
"framer-motion": "^6.2.3",
"next": "12.0.10",
"next-auth": "^4.1.2",
"next-connect": "^0.11.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-toastify": "^8.1.1",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@types/next-auth": "^3.15.0",
"@types/node": "^17.0.14",
"@types/react": "17.0.38",
"autoprefixer": "^10.4.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"postcss": "^8.4.5",
"prisma": "^3.9.0",
"tailwindcss": "^3.0.18",
"typescript": "4.5.5"
}
}