aboutsummaryrefslogtreecommitdiff
path: root/packages/server/package.json
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-18 13:40:19 +0200
committerHampusM <hampus@hampusmat.com>2021-07-18 13:40:19 +0200
commit2e333f01de88217f33ed2fb9ba0c18ed1357419c (patch)
tree3492f05edbce187f53e1fe0f9bbef64e725ede08 /packages/server/package.json
parent29ac9af81d94f7de298d98d9597c73ddd1c93bb0 (diff)
Backend is run by ts-node instead of node with precompiled ts
Diffstat (limited to 'packages/server/package.json')
-rw-r--r--packages/server/package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/server/package.json b/packages/server/package.json
index 1f4562e..bb91e45 100644
--- a/packages/server/package.json
+++ b/packages/server/package.json
@@ -5,7 +5,7 @@
"author": "HampusMat",
"license": "MIT",
"scripts": {
- "dev": "yarn tsc && concurrently -k --kill-others-on-fail \"yarn tsc --watch \" \"nodemon --exitcrash dist/app.js\""
+ "dev": "nodemon --exitcrash src/app.ts"
},
"dependencies": {
"date-fns": "^2.22.1",
@@ -13,7 +13,6 @@
"fastify-static": "^4.2.2",
"js-yaml": "^4.1.0",
"nodegit": "^0.27.0",
- "nodemon": "^2.0.7",
"tar-stream": "^2.2.0",
"whatwg-url": "^9.0.0"
},
@@ -30,7 +29,9 @@
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
+ "nodemon": "^2.0.12",
"shared_types": "^1.0.0",
+ "ts-node": "^10.1.0",
"typescript": "^4.3.2"
}
}