2
0
Files
bot/apps/viewer/package.json

67 lines
2.1 KiB
JSON
Raw Normal View History

2021-11-29 15:19:07 +01:00
{
"name": "viewer",
2021-12-23 09:44:47 +01:00
"license": "AGPL-3.0-or-later",
2021-12-16 15:19:05 +01:00
"version": "0.1.0",
2021-11-29 15:19:07 +01:00
"scripts": {
"dev": "cross-env ENVSH_ENV=.env.local bash ../../scripts/inject-runtime-env.sh next dev -p 3001",
"build": "cross-env ENVSH_ENV=.env.local bash ../../scripts/inject-runtime-env.sh next build",
"build:docker": "next build",
"build:env": "cd ../.. && cross-env ENVSH_ENV=./apps/viewer/.env.docker ENVSH_OUTPUT=./apps/viewer/public/__env.js bash scripts/inject-runtime-env.sh",
2022-11-02 19:45:46 +01:00
"start": "next start -p 3001",
"lint": "next lint",
2022-08-08 08:21:36 +02:00
"test": "pnpm playwright test",
2022-11-02 19:45:46 +01:00
"test:report": "pnpm playwright show-report"
2021-11-29 15:19:07 +01:00
},
"dependencies": {
2023-07-15 10:46:36 +02:00
"@planetscale/database": "^1.8.0",
"@sentry/nextjs": "7.58.1",
"@trpc/server": "10.34.0",
"@typebot.io/prisma": "workspace:*",
2023-07-15 12:26:12 +02:00
"@typebot.io/nextjs": "workspace:*",
"ai": "2.1.30",
2023-07-15 10:46:36 +02:00
"aws-sdk": "2.1415.0",
2022-11-29 10:02:40 +01:00
"bot-engine": "workspace:*",
"cors": "2.8.5",
"eventsource-parser": "^1.0.0",
2023-07-15 10:46:36 +02:00
"google-spreadsheet": "4.0.2",
2023-03-14 15:08:53 +01:00
"got": "12.6.0",
2023-07-15 10:46:36 +02:00
"libphonenumber-js": "1.10.37",
"next": "13.4.3",
2023-03-14 15:08:53 +01:00
"nextjs-cors": "2.1.2",
"node-html-parser": "^6.1.5",
2023-07-15 10:46:36 +02:00
"nodemailer": "6.9.3",
2023-07-12 12:00:23 +02:00
"openai": "3.3.0",
"openai-edge": "^1.2.0",
2023-05-25 17:24:39 +02:00
"qs": "6.11.2",
"react": "18.2.0",
"react-dom": "18.2.0",
2023-07-15 10:46:36 +02:00
"stripe": "12.13.0",
2023-05-25 17:24:39 +02:00
"trpc-openapi": "1.2.0"
2021-11-29 15:19:07 +01:00
},
"devDependencies": {
2023-05-25 17:24:39 +02:00
"@faire/mjml-react": "3.3.0",
2023-07-15 10:46:36 +02:00
"@paralleldrive/cuid2": "2.2.1",
"@playwright/test": "1.36.0",
"@typebot.io/emails": "workspace:*",
"@typebot.io/lib": "workspace:*",
"@typebot.io/schemas": "workspace:*",
"@typebot.io/tsconfig": "workspace:*",
2022-12-05 16:16:49 +01:00
"@types/cors": "2.8.13",
2023-07-15 10:46:36 +02:00
"@types/node": "20.4.2",
2023-05-25 17:24:39 +02:00
"@types/nodemailer": "6.4.8",
"@types/papaparse": "5.3.7",
"@types/qs": "6.9.7",
2023-07-15 10:46:36 +02:00
"@types/react": "18.2.15",
2023-04-03 09:00:39 +02:00
"@types/sanitize-html": "2.9.0",
2023-07-15 10:46:36 +02:00
"dotenv": "16.3.1",
"eslint": "8.44.0",
2022-11-21 11:12:43 +01:00
"eslint-config-custom": "workspace:*",
2023-07-15 10:46:36 +02:00
"google-auth-library": "8.9.0",
2023-03-14 15:08:53 +01:00
"node-fetch": "3.3.1",
2023-04-03 09:00:39 +02:00
"papaparse": "5.4.1",
2023-07-15 10:46:36 +02:00
"superjson": "1.12.4",
"typescript": "5.1.6",
2023-03-14 15:08:53 +01:00
"zod": "3.21.4"
2021-11-29 15:19:07 +01:00
}
}