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

45 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": {
2022-04-02 10:38:00 +02:00
"@sentry/nextjs": "^6.19.3",
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-04-02 10:38:00 +02:00
"got": "^12.0.3",
2022-01-06 09:40:56 +01:00
"models": "*",
2022-04-02 10:38:00 +02:00
"next": "^12.1.4",
"nodemailer": "^6.7.3",
"qs": "^6.10.3",
2022-04-02 10:38:00 +02:00
"utils": "*",
2021-11-29 15:19:07 +01:00
"react": "^17.0.2",
2022-04-02 10:38:00 +02:00
"react-dom": "^17.0.2"
2021-11-29 15:19:07 +01:00
},
"devDependencies": {
2022-04-02 10:38:00 +02:00
"@playwright/test": "^1.20.2",
"@types/cors": "^2.8.12",
2022-04-02 10:38:00 +02:00
"@types/google-spreadsheet": "^3.2.0",
"@types/node": "^17.0.23",
"@types/nodemailer": "^6.4.4",
"@types/qs": "^6.9.7",
2022-04-02 10:38:00 +02:00
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^5.17.0",
2021-11-29 15:19:07 +01:00
"eslint": "<8.0.0",
2022-04-02 10:38:00 +02:00
"eslint-config-next": "12.1.4",
"next-transpile-modules": "^9.0.0",
2022-04-02 10:38:00 +02:00
"typescript": "^4.6.3"
2021-11-29 15:19:07 +01:00
}
}