forked from gmpetrov/databerry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.6 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
110
111
112
113
{
"name": "databerry-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:widget:chat-bubble": "NEXT_PUBLIC_DASHBOARD_URL=https://app.databerry.ai npx parcel build widgets/chat-bubble.tsx",
"publish:package:chat-bubble": "npm run build:widget:chat-bubble && cp dist/chat-bubble* packages/chat-bubble/ && cd packages/chat-bubble && npm version patch && npm publish --access public",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "dotenv -e .env.local -- prisma migrate dev",
"prisma:migrate:prod": "dotenv -e .env.local -- prisma migrate deploy",
"worker:datasource-loader": "dotenv -e .env.local -- npx tsx --watch workers/datasource-loader.ts",
"dotenv": "dotenv -e .env.local",
"set-env:prod": "cat .env.prod.local | xargs flyctl --config fly/fly.toml secrets set"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"alias": {
"@app/components": "./components",
"@app/utils": "./utils",
"@app/types": "./types"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.2",
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.16",
"@hookform/resolvers": "^3.0.0",
"@microsoft/fetch-event-source": "^2.0.1",
"@mui/icons-material": "^5.11.11",
"@mui/joy": "5.0.0-alpha.72",
"@mui/lab": "5.0.0-alpha.124",
"@mui/material": "^5.11.14",
"@mui/utils": "^5.11.13",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/bundle-analyzer": "^13.3.0",
"@pinecone-database/pinecone": "^0.0.11",
"@prisma/client": "^4.12.0",
"@slack/web-api": "^6.8.1",
"@types/node": "18.15.10",
"@types/nodemailer": "^6.4.7",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"@xmldom/xmldom": "^0.8.7",
"aws-sdk": "^2.1343.0",
"axios": "^1.3.4",
"bullmq": "^3.10.4",
"cheerio": "1.0.0-rc.12",
"clsx": "^1.2.1",
"cors": "^2.8.5",
"crisp-api": "^7.4.1",
"cuid": "^3.0.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"google-auth-library": "^8.7.0",
"googleapis": "^118.0.0",
"hash-wasm": "^4.9.0",
"ioredis": "^5.3.1",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"langchain": "^0.0.64",
"mammoth": "^1.5.1",
"mime-types": "^2.1.35",
"nanoid": "^4.0.2",
"next": "13.2.4",
"next-auth": "^4.20.1",
"next-connect": "^0.13.0",
"nodemailer": "^6.9.1",
"nprogress": "^0.2.0",
"p-debounce": "^4.0.0",
"p-map": "^5.5.0",
"p-timeout": "^6.1.1",
"pdfjs-dist": "3.4.120",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"playwright": "^1.32.3",
"radash": "^10.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-frame-component": "^5.2.6",
"react-hook-form": "^7.43.8",
"react-syntax-highlighter": "^15.5.0",
"sharp": "^0.32.1",
"stripe": "^11.17.0",
"superjson": "^1.12.2",
"swr": "^2.1.1",
"typescript": "5.0.2",
"uuid": "^9.0.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.2/xlsx-0.19.2.tgz",
"yaml": "^2.2.1",
"zod": "3.19.1"
},
"devDependencies": {
"@swc/core": "^1.3.51",
"@types/cors": "^2.8.13",
"@types/mime-types": "^2.1.1",
"@types/nprogress": "^0.2.0",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/uuid": "^9.0.1",
"autoprefixer": "^10.4.14",
"dotenv-cli": "^7.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.21",
"prisma": "^4.12.0",
"tailwindcss": "^3.2.7"
}
}