Engine/apps/backend/package.json
Jo 0db7875bc1 [backend/frontend/shared] server-side plugins and basic spa frontend
feat(backend): finish server-side plugin system
feat(frontend): implement basic frontend with typescript, vite, vue and vue-router
feat(shared/plugins): implement example-plugin, to showcase the server-side plugin implementation
feat(shared/plugins): implement base file-structure for client-side plugins
2024-06-28 14:56:29 +02:00

38 lines
No EOL
1.1 KiB
JSON

{
"name": "homespace-backend",
"version": "0.0.1",
"author": "Johannes Reckers",
"type": "module",
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start:dev": "bun --watch ./src/main.ts",
"start:debug": "nest start --debug --watch",
"start:prod": "bun ./src/main.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/typeorm": "^10.0.1",
"ascii-table": "^0.0.9",
"glob": "^10.4.2",
"mongodb": "^6.7.0",
"pg": "^8.11.3",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.9.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.3"
}
}