-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
{
"name": "hashbot",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "npm run codegen && next build",
"codegen": "graphql-codegen --config graphql.config.yml",
"dev": "concurrently \"next\" \"npm run codegen --watch\" --names next,codegen",
"lint": "next lint",
"start": "next start",
"typecheck": "tsc"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@headlessui/react": "^1.7.18",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tailwindcss/forms": "^0.5.7",
"@urql/exchange-graphcache": "6.1.4",
"ai": "^2.2.31",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
"date-fns": "^3.3.1",
"framer-motion": "^10.17.9",
"graphql-request": "^6.1.0",
"html-to-md": "^0.8.5",
"lucide-react": "^0.303.0",
"next": "14.1.0",
"next-themes": "^0.2.1",
"next-urql": "5.0.2",
"next13-progressbar": "^1.1.3",
"openai": "^4.26.0",
"react": "^18",
"react-cookie": "^7.0.2",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-toastify": "^10.0.3",
"react-ts-loaders": "^1.2.1",
"sharp": "^0.33.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"urql": "4.0.4",
"usehooks-ts": "^2.10.0",
"uuid": "^9.0.1",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^4.0.0",
"@graphql-codegen/urql-introspection": "^3.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/validator": "^13.11.7",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}