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

60 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-08-06 08:36:03 +02:00
"@auth/kysely-adapter": "^1.4.2",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
2024-03-04 13:52:20 +01:00
"@mui/icons-material": "^5",
2024-08-06 08:36:03 +02:00
"@mui/lab": "^5.0.0-alpha.173",
2024-03-04 13:52:20 +01:00
"@mui/material": "^5",
2024-08-06 08:36:03 +02:00
"@mui/material-nextjs": "^5.16.6",
"@mui/x-data-grid-pro": "^7.12.0",
"@mui/x-date-pickers-pro": "^7.12.0",
"@mui/x-license": "^7.12.0",
2024-06-05 08:52:41 +02:00
"@link-stack/bridge-common": "*",
"@link-stack/bridge-ui": "*",
"@link-stack/signal-api": "*",
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-07-18 11:08:01 +02:00
"mui-chips-input": "^2.1.5",
"next": "14.2.5",
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-08-06 08:36:03 +02:00
"react-cookie": "^7.2.0",
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-25 08:14:03 +02:00
"react-qr-code": "^2.0.15",
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-08-06 08:36:03 +02:00
"tss-react": "^4.9.12",
"tsx": "^4.16.5",
2024-06-05 08:52:41 +02:00
"@link-stack/ui": "*"
2024-03-04 13:52:20 +01:00
},
"devDependencies": {
2024-08-06 08:36:03 +02:00
"@types/node": "^22",
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
}
}