chore: Initialiseer monorepo
Configureer package.json met overerving en eenvoudige commandos
This commit is contained in:
		
							parent
							
								
									592cf1acfd
								
							
						
					
					
						commit
						9b52b43f65
					
				
					 5 changed files with 16266 additions and 6898 deletions
				
			
		|  | @ -1,38 +1,33 @@ | |||
| { | ||||
|   "name": "dwengo-1-backend", | ||||
|   "version": "0.0.1", | ||||
|   "description": "Backend for Dwengo-1", | ||||
|   "type": "module", | ||||
|   "private": true, | ||||
|   "main": "src/app.ts", | ||||
|   "scripts": { | ||||
|     "build": "tsc --project tsconfig.json", | ||||
|     "dev": "tsx watch --env-file=.env.development.local src/app.ts", | ||||
|     "start": "node --env-file=.env dist/index.js" | ||||
|   }, | ||||
|   "repository": { | ||||
|     "type": "git", | ||||
|     "url": "git+https://github.com/SELab-2/Dwengo-1.git" | ||||
|   }, | ||||
|   "license": "MIT", | ||||
|   "bugs": { | ||||
|     "url": "https://github.com/SELab-2/Dwengo-1/issues" | ||||
|   }, | ||||
|   "homepage": "https://sel2-1.ugent.be/", | ||||
|   "dependencies": { | ||||
|     "@mikro-orm/core": "^6.4.6", | ||||
|     "@mikro-orm/reflection": "^6.4.6", | ||||
|     "@mikro-orm/postgresql": "^6.4.6", | ||||
|     "dotenv": "^16.4.7", | ||||
|     "express": "^5.0.1" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "@mikro-orm/cli": "^6.4.6", | ||||
|     "@types/express": "^5.0.0", | ||||
|     "@types/node": "^22.13.4", | ||||
|     "ts-node": "^10.9.2", | ||||
|     "tsx": "^4.19.3", | ||||
|     "typescript": "^5.7.3", | ||||
|     "vitest": "^3.0.6" | ||||
|   } | ||||
|     "name": "dwengo-1-backend", | ||||
|     "version": "0.0.1", | ||||
|     "description": "Backend for Dwengo-1", | ||||
|     "private": true, | ||||
|     "type": "module", | ||||
|     "scripts": { | ||||
|         "build": "tsc --project tsconfig.json", | ||||
|         "dev": "tsx watch --env-file=.env.development.local src/app.ts", | ||||
|         "start": "node --env-file=.env dist/app.js", | ||||
|         "format": "prettier --write src/", | ||||
|         "format-check": "prettier --check src/", | ||||
|         "lint": "eslint . --fix", | ||||
|         "test:unit": "vitest --run" | ||||
|     }, | ||||
|     "dependencies": { | ||||
|         "@mikro-orm/core": "^6.4.6", | ||||
|         "@mikro-orm/postgresql": "^6.4.6", | ||||
|         "@mikro-orm/reflection": "^6.4.6", | ||||
|         "dotenv": "^16.4.7", | ||||
|         "express": "^5.0.1" | ||||
|     }, | ||||
|     "devDependencies": { | ||||
|         "@mikro-orm/cli": "^6.4.6", | ||||
|         "@types/express": "^5.0.0", | ||||
|         "@types/node": "^22.13.4", | ||||
|         "globals": "^15.15.0", | ||||
|         "ts-node": "^10.9.2", | ||||
|         "tsx": "^4.19.3", | ||||
|         "typescript": "^5.7.3", | ||||
|         "vitest": "^3.0.6" | ||||
|     } | ||||
| } | ||||
|  |  | |||
		Reference in a new issue