server: adapt to new tsc output

This commit is contained in:
Matthias Kretschmann 2019-07-09 15:56:38 +02:00
parent 2a9d7476c8
commit 362a266518
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@
"description": "Ocean Protocol marketplace backend.",
"version": "0.6.2",
"license": "Apache-2.0",
"main": "dist/server.js",
"main": "dist/src/server.js",
"scripts": {
"start": "nodemon --exec ts-node src/server.ts",
"serve": "node dist/server.js",
"serve": "node dist/src/server.js",
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",