-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.03 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.03 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
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
96
97
98
99
100
101
102
103
104
105
106
107
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"lint-staged": "lint-staged",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"test": "yarn prettier:check && yarn lint",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down",
"postinstall": "prisma generate"
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@dqbd/tiktoken": "1.0.2",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@headlessui/react": "1.7.17",
"@heroicons/react": "1.0.6",
"@material-ui/icons": "4.11.3",
"@mui/icons-material": "5.14.19",
"@mui/material": "5.14.19",
"@next-auth/prisma-adapter": "1.0.3",
"@prisma/client": "4.10.1",
"@rainbow-me/rainbowkit": "1.3.0",
"@spruceid/rebase-client": "0.16.1",
"@spruceid/ssx": "2.0.0",
"@tabler/icons-react": "2.44.0",
"@vercel/blob": "0.15.1",
"@wagmi/core": "^0.10.10",
"@web3modal/ethereum": "2.7.0",
"@web3modal/react": "2.7.0",
"@xixixao/uploadstuff": "0.0.5",
"clsx": "1.2.1",
"date-fns": "2.29.3",
"dinero.js": "2.0.0-alpha.8",
"ethers": "^5.7.2",
"eventsource-parser": "1.1.1",
"i": "0.3.7",
"ms": "3.0.0-canary.1",
"next": "14.0.3-canary.7",
"next-i18next": "15.1.1",
"node-fetch": "3.3.2",
"npm": "10.2.4",
"pdf-parse-fork": "1.2.0",
"pino-pretty": "10.2.3",
"random-words": "^1.3.0",
"react": "18.2.0",
"react-color": "2.19.3",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.1",
"react-i18next": "13.5.0",
"react-markdown": "8.0.2",
"server-only": "0.0.1",
"styled-components": "6.0.0-beta.2",
"styles.css": "link:@rainbow-me/rainbowkit/styles.css",
"svelecte": "^3.16.0",
"use-count-up": "3.0.1",
"uuid": "9.0.1",
"vercel": "30.2.1",
"viem": "^1.4.1",
"wagmi": "1.3.9"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.9",
"@types/ms": "0.7.31",
"@types/next-auth": "3.13.0",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@vercel/git-hooks": "1.0.0",
"autoprefixer": "10.4.13",
"eslint": "8.30.0",
"eslint-config-next": "13.1.0",
"lint-staged": "13.1.0",
"patch-package": "8.0.0",
"postcss": "8.4.21",
"postinstall-postinstall": "2.1.0",
"prettier": "2.8.1",
"prettier-plugin-tailwindcss": "0.2.1",
"prisma": "4.10.1",
"tailwindcss": "3.3.1",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"vite": "^4.3.5",
"vite-plugin-top-level-await": "^1.3.0",
"vite-plugin-wasm": "^3.2.2"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.ts"
},
"pnpm": {
"patchedDependencies": {
"abitype@0.9.8": "patches/abitype@0.9.8.patch",
"viem@1.21.0": "patches/viem@1.21.0.patch"
}
}
}