-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
92 lines (92 loc) · 2.57 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
{
"name": "academy-t3-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"prisma:seed": "npx prisma db seed"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.3",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.1.1",
"@rainbow-me/rainbowkit": "^1.0.8",
"@rainbow-me/rainbowkit-siwe-next-auth": "^0.3.0",
"@tanstack/react-query": "^4.29.19",
"@tanstack/react-query-devtools": "^4.32.5",
"@trpc/client": "^10.33.0",
"@trpc/next": "^10.33.0",
"@trpc/react-query": "^10.33.0",
"@trpc/server": "^10.33.0",
"@vercel/analytics": "^1.1.1",
"@vercel/postgres": "^0.4.0",
"bcryptjs": "^2.4.3",
"ethers": "^6",
"framer-motion": "^10.12.17",
"next": "^13.4.7",
"next-auth": "^4.22.1",
"next-seo": "^6.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"siwe": "^2.1.4",
"superjson": "1.12.4",
"viem": "^1.2.6",
"wagmi": "^1.3.3",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.8",
"@types/bcryptjs": "^2.4.2",
"@types/eslint": "^8.40.2",
"@types/mdx": "^2.0.5",
"@types/node": "^20.3.2",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-syntax-highlighter": "^15.5.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "0.2.1",
"prisma": "^5.1.1",
"react-syntax-highlighter": "^15.5.0",
"remark-frontmatter": "^4.0.1",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"ct3aMetadata": {
"initVersion": "7.10.3"
},
"lint-staged": {
"*.{js,ts,tsx,md,json,yml}": "prettier --write"
},
"engines": {
"node": ">=18",
"npm": "please-use-yarn",
"yarn": ">=1.22"
}
}