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

41 lines
1.1 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",
2025-11-21 14:53:27 +01:00
"version": "3.3.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": {
"@auth/kysely-adapter": "^1.10.0",
2024-11-25 09:31:25 +01:00
"@mui/icons-material": "^6",
"@mui/material": "^6",
"@mui/material-nextjs": "^6",
"@mui/x-license": "^7",
2025-11-10 14:55:22 +01:00
"@link-stack/bridge-common": "workspace:*",
"@link-stack/bridge-ui": "workspace:*",
"next": "15.5.4",
2024-12-13 13:20:37 +01:00
"next-auth": "^4.24.11",
"react": "19.2.0",
"react-dom": "19.2.0",
"sharp": "^0.34.4",
"tsx": "^4.20.6",
2025-11-10 14:55:22 +01:00
"@link-stack/ui": "workspace:*"
2024-03-04 13:52:20 +01:00
},
"devDependencies": {
2025-11-10 14:55:22 +01:00
"@link-stack/eslint-config": "workspace:*",
"@link-stack/typescript-config": "workspace:*",
"@types/node": "^24",
"@types/pg": "^8.15.5",
2024-12-13 13:20:37 +01:00
"@types/react": "^19",
"@types/react-dom": "^19",
2024-04-21 08:11:24 +02:00
"typescript": "^5"
2024-03-04 13:52:20 +01:00
}
}