-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "xims",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write src",
"vercel:build": "sed -i 's/nativeLib = require(`@lancedb\\/vectordb-\\${currentTarget()}`);/nativeLib = require(`@lancedb\\/vectordb-linux-x64-gnu`);/' node_modules/vectordb/native.js && next build",
"postinstall": "yarn prisma generate && yarn db:sync",
"db:deploy": "yarn prisma migrate deploy",
"db:generate": "yarn prisma generate",
"db:sync": "yarn prisma migrate dev",
"db:migrate": "yarn prisma migrate dev --name",
"db:nuke": "prisma migrate reset",
"db:reset": "run-s db:nuke db:deploy",
"db:seed": "yarn prisma db seed",
"db:setup": "yarn prisma db push",
"db:studio": "yarn prisma studio",
"lint": "next lint",
"lint:ts": "tsc --pretty --noEmit",
"start": "next start"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.7.1",
"@chakra-ui/theme-tools": "^2.0.12",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^2.9.10",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.14.0",
"@t3-oss/env-nextjs": "^0.3.1",
"@tanstack/react-query": "^4.29.7",
"@trpc/client": "^10.26.0",
"@trpc/next": "^10.26.0",
"@trpc/react-query": "^10.26.0",
"@trpc/server": "^10.26.0",
"@types/needle": "^3.2.0",
"@vercel/analytics": "^1.0.1",
"ai": "^2.2.8",
"archiver": "^5.3.2",
"boring-avatars": "^1.7.0",
"eventemitter3": "^5.0.1",
"focus-visible": "^5.2.0",
"framer-motion": "^10.12.18",
"immer": "^10.0.2",
"langchain": "^0.0.127",
"lodash": "^4.17.21",
"nanoid": "^4.0.0",
"needle": "^3.2.0",
"next": "^13.4.2",
"next-auth": "^4.22.1",
"nextjs-google-analytics": "^2.3.3",
"nodemailer": "^6.9.3",
"nookies": "^2.5.2",
"nprogress": "^0.2.0",
"openai": "^3.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.45.4",
"react-icons": "^4.10.1",
"react-infinite-scroll-component": "^6.1.0",
"superjson": "1.12.2",
"timeago.js": "^4.0.2",
"trpc-panel": "^1.3.4",
"usehooks-ts": "^2.9.1",
"vectordb": "^0.2.2",
"zod": "^3.21.4",
"zustand": "^4.3.9"
},
"prisma": {
"seed": "ts-node --transpile-only prisma/seed.ts"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.1.0",
"yarn": ">=1.22.10"
},
"devDependencies": {
"@hookform/devtools": "^4.2.3",
"@types/archiver": "^5.3.2",
"@types/eslint": "^8.37.0",
"@types/node": "^18.16.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"csv-parser": "^3.0.0",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.2",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.0",
"prisma": "^4.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:ts && pretty-quick --staged",
"pre-push": "yarn build"
}
}
}