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

41 lines
1.1 KiB
JSON
Raw Permalink 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-08-28 10:28:59 +02:00
"version": "2.2.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-09-27 11:22:45 +02:00
"@auth/kysely-adapter": "^1.5.2",
2024-03-04 13:52:20 +01:00
"@mui/icons-material": "^5",
"@mui/material": "^5",
2024-09-27 11:22:45 +02:00
"@mui/material-nextjs": "^5",
"@mui/x-license": "^7.18.0",
2024-06-05 08:52:41 +02:00
"@link-stack/bridge-common": "*",
"@link-stack/bridge-ui": "*",
2024-09-27 11:22:45 +02:00
"next": "14.2.13",
"next-auth": "^4.24.8",
2024-05-08 07:32:29 +02:00
"react": "18.3.1",
"react-dom": "18.3.1",
2024-09-04 07:52:30 +02:00
"sharp": "^0.33.5",
2024-09-27 11:22:45 +02:00
"tsx": "^4.19.1",
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-09-27 11:22:45 +02:00
"@types/pg": "^8.11.10",
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
}
}