fix: Shared pkgs importeren

This commit is contained in:
Tibo De Peuter 2025-04-02 17:32:14 +02:00
parent b6e07d28df
commit 9470a4ddf9
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
95 changed files with 160 additions and 142 deletions

View file

@ -1,12 +1,13 @@
{
"name": "dwengo-1-backend",
"name": "@dwengo-1/backend",
"version": "0.1.1",
"description": "Backend for Dwengo-1",
"private": true,
"type": "module",
"main": "dist/app.js",
"scripts": {
"build": "cross-env NODE_ENV=production tsc --project tsconfig.json",
"dev": "cross-env NODE_ENV=development tsx watch --env-file=.env.development.local src/app.ts",
"build": "cross-env NODE_ENV=production tsc --build",
"dev": "cross-env NODE_ENV=development tsc --build --watch --env-file=.env.development.local",
"start": "cross-env NODE_ENV=production node --env-file=.env dist/app.js",
"format": "prettier --write src/",
"format-check": "prettier --check src/",