New start command, for non-Docker people

This commit is contained in:
Alicia Sykes 2024-03-02 18:51:17 +00:00
parent 48fa5fc21e
commit df866ba408
1 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"main": "server",
"author": "Alicia Sykes <alicia@omg.lol> (https://aliciasykes.com)",
"scripts": {
"start": "node server",
"start": "npm-run-all --parallel build-watch start",
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
@ -14,7 +14,8 @@
"build-and-start": "npm-run-all --parallel build-watch start",
"validate-config": "node services/config-validator",
"health-check": "node services/healthcheck",
"dependency-audit": "npx improved-yarn-audit --ignore-dev-deps"
"dependency-audit": "npx improved-yarn-audit --ignore-dev-deps",
"static-start": " node server"
},
"dependencies": {
"@babel/core": "^7.0.0",