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

60 lines
1.6 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": "ENVSH_ENV=.env.local bash ../../env.sh next dev -p 3001",
2022-06-22 10:23:54 +02:00
"build": "next build",
2021-11-29 15:19:07 +01:00
"start": "next start",
"lint": "next lint",
2022-08-08 08:21:36 +02:00
"test": "pnpm playwright test",
"test:open": "PWDEBUG=1 pnpm playwright test"
2021-11-29 15:19:07 +01:00
},
"dependencies": {
2022-09-12 07:29:36 +02:00
"@sentry/nextjs": "7.12.1",
"aws-sdk": "2.1213.0",
2021-12-16 15:19:05 +01:00
"bot-engine": "*",
"cors": "^2.8.5",
"cuid": "^2.1.8",
2022-08-08 08:21:36 +02:00
"db": "workspace:*",
"google-spreadsheet": "^3.3.0",
2022-09-12 07:29:36 +02:00
"got": "12.4.1",
"next": "12.3.0",
2022-08-21 22:33:09 +02:00
"nodemailer": "^6.7.8",
2022-08-08 08:21:36 +02:00
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize-html": "^2.7.1",
2022-09-12 07:29:36 +02:00
"stripe": "10.8.0"
2021-11-29 15:19:07 +01:00
},
"devDependencies": {
2022-09-12 07:29:36 +02:00
"@babel/preset-env": "^7.19.0",
"@playwright/test": "1.25.2",
"@types/cors": "^2.8.12",
2022-08-08 08:21:36 +02:00
"@types/google-spreadsheet": "^3.3.0",
2022-09-12 07:29:36 +02:00
"@types/node": "18.7.16",
2022-08-08 08:21:36 +02:00
"@types/nodemailer": "6.4.5",
2022-09-12 07:29:36 +02:00
"@types/papaparse": "5.3.5",
"@types/qs": "^6.9.7",
2022-09-12 07:29:36 +02:00
"@types/react": "^18.0.19",
2022-08-08 08:21:36 +02:00
"@types/sanitize-html": "2.6.2",
2022-09-12 07:29:36 +02:00
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"dotenv": "^16.0.1",
"emails": "workspace:*",
"eslint": "8.23.0",
2022-09-12 07:29:36 +02:00
"eslint-config-next": "12.3.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
2022-09-12 07:29:36 +02:00
"google-auth-library": "^8.5.1",
"handlebars": "^4.7.7",
"mjml": "^4.13.0",
2022-08-08 08:21:36 +02:00
"models": "workspace:*",
"next-transpile-modules": "^9.0.0",
2022-08-08 08:21:36 +02:00
"papaparse": "^5.3.2",
2022-09-12 07:29:36 +02:00
"typescript": "^4.8.3",
"uglify-js": "^3.17.2",
2022-08-08 08:21:36 +02:00
"utils": "workspace:*"
2021-11-29 15:19:07 +01:00
}
}