fix: npm commandos

This commit is contained in:
Tibo De Peuter 2025-04-02 18:14:10 +02:00
parent 5d312d8c29
commit e55b96bc08
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@
"main": "dist/app.js",
"scripts": {
"build": "cross-env NODE_ENV=production tsc --build",
"dev": "cross-env NODE_ENV=development tsc --build --watch --env-file=.env.development.local",
"dev": "cross-env NODE_ENV=development tsx watch --env-file=.env.development.local src/app.ts",
"start": "cross-env NODE_ENV=production node --env-file=.env dist/app.js",
"format": "prettier --write src/",
"format-check": "prettier --check src/",

View file

@ -11,7 +11,7 @@
"type-check": "vue-tsc --build",
"format": "prettier --write src/",
"format-check": "prettier --check src/",
"lint": "eslint . --fix",
"lint": "eslint ./{src,tests} --fix",
"test:unit": "vitest --run",
"test:e2e": "playwright test"
},