link-stack/apps/bridge-frontend/package.json

59 lines
1.7 KiB
JSON
Raw Normal View History

2024-03-04 13:52:20 +01:00
{
2024-06-05 08:52:41 +02:00
"name": "@link-stack/bridge-frontend",
2024-03-04 13:52:20 +01:00
"version": "0.1.0",
2024-04-23 10:31:26 +02:00
"type": "module",
2024-03-04 13:52:20 +01:00
"scripts": {
"dev": "next dev",
2024-03-16 19:39:20 +01:00
"build": "next build",
2024-03-04 13:52:20 +01:00
"start": "next start",
2024-05-14 15:31:44 +02:00
"lint": "next lint",
"migrate:up:all": "tsx database/migrate.ts up:all",
"migrate:up:one": "tsx database/migrate.ts up:one",
"migrate:down:all": "tsx database/migrate.ts down:all",
"migrate:down:one": "tsx database/migrate.ts down:one"
2024-03-04 13:52:20 +01:00
},
"dependencies": {
2024-06-05 08:52:41 +02:00
"@auth/kysely-adapter": "^1.2.0",
2024-03-04 13:52:20 +01:00
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
2024-04-09 11:05:40 +02:00
"@emotion/styled": "^11.11.5",
2024-03-04 13:52:20 +01:00
"@mui/icons-material": "^5",
2024-04-09 11:05:40 +02:00
"@mui/lab": "^5.0.0-alpha.170",
2024-03-04 13:52:20 +01:00
"@mui/material": "^5",
2024-03-17 12:58:25 +01:00
"@mui/material-nextjs": "^5.15.11",
2024-06-05 08:52:41 +02:00
"@mui/x-data-grid-pro": "^7.6.1",
"@mui/x-date-pickers-pro": "^7.6.1",
"@mui/x-license": "^7.6.1",
"@link-stack/bridge-common": "*",
"@link-stack/bridge-ui": "*",
2024-03-20 17:51:21 +01:00
"date-fns": "^3.6.0",
2024-04-23 10:31:26 +02:00
"dotenv": "^16.4.5",
2024-04-29 17:27:25 +02:00
"graphile-worker": "^0.16.6",
2024-05-08 07:32:29 +02:00
"kysely": "0.26.1",
2024-06-05 08:52:41 +02:00
"material-ui-popup-state": "^5.1.2",
2024-03-04 13:52:20 +01:00
"mui-chips-input": "^2.1.4",
2024-04-26 15:49:58 +02:00
"next": "14.2.3",
2024-03-16 12:51:56 +01:00
"next-auth": "^4.24.7",
2024-06-05 08:52:41 +02:00
"pg": "^8.12.0",
2024-05-08 07:32:29 +02:00
"react": "18.3.1",
2024-04-09 11:05:40 +02:00
"react-cookie": "^7.1.4",
2024-03-04 13:52:20 +01:00
"react-digit-input": "^2.1.0",
2024-05-08 07:32:29 +02:00
"react-dom": "18.3.1",
2024-06-05 08:52:41 +02:00
"react-qr-code": "^2.0.14",
2024-03-04 13:52:20 +01:00
"react-timer-hook": "^3.0.7",
2024-06-05 08:52:41 +02:00
"sharp": "^0.33.4",
2024-05-08 07:32:29 +02:00
"tss-react": "^4.9.10",
2024-06-05 08:52:41 +02:00
"tsx": "^4.11.2",
"@link-stack/ui": "*"
2024-03-04 13:52:20 +01:00
},
"devDependencies": {
"@types/node": "^20",
2024-05-08 07:32:29 +02:00
"@types/pg": "^8.11.6",
2024-03-04 13:52:20 +01:00
"@types/react": "^18",
"@types/react-dom": "^18",
2024-06-05 08:52:41 +02:00
"@link-stack/eslint-config": "*",
"@link-stack/typescript-config": "*",
2024-04-21 08:11:24 +02:00
"typescript": "^5"
2024-03-04 13:52:20 +01:00
}
}