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

51 lines
1.3 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": {
"dx": "yarn dev",
"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",
"test": "yarn playwright test",
"test:open": "PWDEBUG=1 yarn playwright test"
2021-11-29 15:19:07 +01:00
},
"dependencies": {
2022-05-13 09:18:25 -07:00
"@sentry/nextjs": "^6.19.7",
"aws-sdk": "^2.1152.0",
2021-12-16 15:19:05 +01:00
"bot-engine": "*",
"cors": "^2.8.5",
"cuid": "^2.1.8",
2021-12-16 15:19:05 +01:00
"db": "*",
"google-spreadsheet": "^3.2.0",
2022-05-13 09:18:25 -07:00
"got": "^12.0.4",
2022-01-06 09:40:56 +01:00
"models": "*",
2022-05-13 09:18:25 -07:00
"next": "^12.1.6",
"nodemailer": "^6.7.5",
"qs": "^6.10.3",
2022-05-13 09:18:25 -07:00
"react": "^18.1.0",
"react-dom": "^18.1.0",
2022-04-21 10:33:16 -07:00
"sanitize-html": "^2.7.0",
2022-05-24 14:25:15 -07:00
"stripe": "^9.1.0",
2022-04-21 10:33:16 -07:00
"utils": "*"
2021-11-29 15:19:07 +01:00
},
"devDependencies": {
2022-05-13 09:18:25 -07:00
"@playwright/test": "^1.22.0",
"@types/aws-sdk": "^2.7.0",
"@types/cors": "^2.8.12",
2022-05-13 09:18:25 -07:00
"@types/google-spreadsheet": "^3.2.1",
"@types/node": "^17.0.33",
"@types/nodemailer": "^6.4.4",
"@types/qs": "^6.9.7",
2022-05-13 09:18:25 -07:00
"@types/react": "^18.0.9",
2022-04-21 10:33:16 -07:00
"@types/sanitize-html": "^2.6.2",
2022-05-24 14:25:15 -07:00
"@types/stripe": "^8.0.417",
2022-05-13 09:18:25 -07:00
"@typescript-eslint/eslint-plugin": "^5.23.0",
2021-11-29 15:19:07 +01:00
"eslint": "<8.0.0",
2022-05-13 09:18:25 -07:00
"eslint-config-next": "12.1.6",
"next-transpile-modules": "^9.0.0",
2022-05-13 09:18:25 -07:00
"typescript": "^4.6.4"
2021-11-29 15:19:07 +01:00
}
}