Update package json start scripts

This commit is contained in:
2023-03-13 20:10:59 +01:00
parent da94113b94
commit d0dea7028c
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -30,8 +30,8 @@
"main": "out/index.js",
"scripts": {
"build": "npx tsc",
"startServer": "node out/server.js",
"startClient": "node out/client.js",
"startServer": "node out/serverMain.js",
"startClient": "node out/clientMain.js",
"test": "jest"
}
}
}
+1 -1
View File
@@ -8,7 +8,7 @@ import { cacheReady } from './cache/redis'
import processAll from './client/process'
const app = express()
const port = 3001
const port = 3000
app.use(express.json())