modified: package.json modified: src/app/component/Bus.tsx new file: src/app/component/BusesList.tsx modified: src/app/component/Strip.tsx modified: src/app/component/StripBusOutput.tsx deleted: src/app/globals.css modified: src/app/page.tsx new file: src/utils/DetectMobile.ts modified: src/utils/EventCounter.ts new file: src/utils/Range.ts modified: tsconfig.json
32 lines
683 B
JSON
32 lines
683 B
JSON
{
|
|
"name": "frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.11.4",
|
|
"@emotion/styled": "^11.11.5",
|
|
"@fontsource/roboto": "^5.0.14",
|
|
"@mui/material": "^5.15.20",
|
|
"next": "14.2.4",
|
|
"next-pwa": "^5.6.0",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.2.4",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5"
|
|
}
|
|
}
|