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

44 lines
1.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": {
"dx": "yarn dev",
2021-12-06 15:48:50 +01:00
"dev": "next dev -p 3001",
2021-11-29 15:19:07 +01:00
"build": "next build",
"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": {
"@sentry/nextjs": "^6.18.2",
2021-12-16 15:19:05 +01:00
"bot-engine": "*",
"cors": "^2.8.5",
2021-12-16 15:19:05 +01:00
"db": "*",
"google-spreadsheet": "^3.2.0",
"got": "^12.0.1",
"qs": "^6.10.3",
2022-01-06 09:40:56 +01:00
"models": "*",
"next": "^12.1.0",
"nodemailer": "^6.7.2",
2021-11-29 15:19:07 +01:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
"utils": "*"
2021-11-29 15:19:07 +01:00
},
"devDependencies": {
"@playwright/test": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/google-spreadsheet": "^3.1.5",
"@types/node": "^17.0.21",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.40",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.14.0",
2021-11-29 15:19:07 +01:00
"eslint": "<8.0.0",
"eslint-config-next": "12.1.0",
"next-transpile-modules": "^9.0.0",
"typescript": "^4.6.2"
2021-11-29 15:19:07 +01:00
}
}