aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-07 12:24:08 +0200
committerHampusM <hampus@hampusmat.com>2021-07-07 12:24:08 +0200
commit6e7365a8c47c89eaab93c73e4a0b4ce4e69d0cb1 (patch)
treefef884af0240dad25d96008ccb0590f47d4d134f /package.json
parent1ba1c1ffd03adbee82869dae9fdc75767719b287 (diff)
Added env variables for testing & fixed other test stuff
Diffstat (limited to 'package.json')
-rw-r--r--package.json11
1 files changed, 7 insertions, 4 deletions
diff --git a/package.json b/package.json
index abe276d..6f17e44 100644
--- a/package.json
+++ b/package.json
@@ -5,7 +5,7 @@
"author": "HampusMat",
"private": true,
"scripts": {
- "clean": "rm -rf node_modules dist packages/*/node_modules packages/*/dist",
+ "clean": "rm -rf node_modules git packages/*/node_modules packages/*/dist",
"dev": "concurrently -k --kill-others-on-fail \"cd packages/client && yarn serve\" \"cd packages/server && yarn dev\"",
"build": "cd packages/client && yarn build && cd ../server && yarn tsc",
"start": "node packages/server/dist/app.js",
@@ -15,12 +15,15 @@
"packages/*"
],
"devDependencies": {
+ "@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.23",
+ "client": "^1.0.0",
"concurrently": "^6.2.0",
+ "dotenv": "^10.0.0",
+ "fs-extra": "^10.0.0",
"jest": "^27.0.6",
+ "server": "^1.0.0",
"ts-jest": "^27.0.3",
- "typescript": "^4.3.5",
- "client": "^1.0.0",
- "server": "^1.0.0"
+ "typescript": "^4.3.5"
}
}