74 lines
2.4 KiB
JSON
74 lines
2.4 KiB
JSON
{
|
|
"name": "game-logger",
|
|
"version": "0.0.3",
|
|
"description": "",
|
|
"main": "dist/server/index.js",
|
|
"scripts": {
|
|
"dev:server": "ts-node-dev --project ./src/server/tsconfig.json --inspect=4321 --respawn --transpile-only --ignore-watch node_modules ./src/server/index.ts",
|
|
"dev:client": "vite serve ./src/client",
|
|
"dev:typecheck-client": "tsc --noEmit --watch --project ./src/client/tsconfig.json --preserveWatchOutput",
|
|
"dev:typecheck-server": "tsc --noEmit --watch --project ./src/server/tsconfig.json --preserveWatchOutput",
|
|
"dev": "concurrently -c magenta,blue,cyan,green npm:dev:*",
|
|
"build:server": "tsc --project ./src/server/tsconfig.json",
|
|
"build:client": "vite build ./src/client",
|
|
"build": "rimraf build && concurrently -c magenta,blue npm:build:*",
|
|
"start": "node dist/server/index.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@fontsource/roboto": "^5.1.1",
|
|
"@mui/icons-material": "^7.2.0",
|
|
"@mui/material": "^7.2.0",
|
|
"@mui/x-charts": "^8.7.0",
|
|
"@mui/x-data-grid": "^8.7.0",
|
|
"@mui/x-date-pickers": "^8.7.0",
|
|
"@mui/x-tree-view": "^8.7.0",
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"@ts-rest/react-query": "^3.51.0",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.0.0",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^22.10.5",
|
|
"@types/react": "^18.0.0",
|
|
"@types/react-dom": "^18.0.0",
|
|
"@types/swagger-ui-express": "^4.1.7",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"concurrently": "^9.1.2",
|
|
"date-fns": "^4.1.0",
|
|
"dayjs": "^1.11.13",
|
|
"jotai": "^2.11.0",
|
|
"lodash-es": "^4.17.21",
|
|
"material-react-table": "^3.1.0",
|
|
"openapi3-ts": "^4.4.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-router": "^7.1.1",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.7.2",
|
|
"vite": "^7.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@anatine/zod-openapi": "^2.2.6",
|
|
"@dotenvx/dotenvx": "^1.45.2",
|
|
"@react-spring/web": "^10.0.1",
|
|
"@ts-rest/core": "^3.51.0",
|
|
"@ts-rest/express": "^3.51.0",
|
|
"@ts-rest/open-api": "^3.51.0",
|
|
"async-wrapper-express-ts": "^3.1.6",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.0.0",
|
|
"kysely": "^0.28.2",
|
|
"mysql2": "^3.12.0",
|
|
"react-is": "^18.3.1",
|
|
"swagger-ui-express": "^5.0.1",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"overrides": {
|
|
"react-is": "^18.3.1"
|
|
}
|
|
}
|