aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorMaks Jopek <maksymilian.jopek@prym-soft.pl>2021-04-04 01:53:24 +0200
committerMaks Jopek <maksymilian.jopek@prym-soft.pl>2021-04-04 01:53:24 +0200
commit292257d627bd1dfeafd772ac6457e2f54c2b73ba (patch)
treeb7962648b87ab709e8529075ce912950019adaee /package.json
parenteee4ee32dd667ed6efd31ddcf8f64217b7e16b60 (diff)
downloadfia-292257d627bd1dfeafd772ac6457e2f54c2b73ba.tar.gz
fia-292257d627bd1dfeafd772ac6457e2f54c2b73ba.tar.zst
fia-292257d627bd1dfeafd772ac6457e2f54c2b73ba.zip
One step closer to the end
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/package.json b/package.json
index 82eb636..920f7f1 100644
--- a/package.json
+++ b/package.json
@@ -7,20 +7,22 @@
"main": "./src/backend/js/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
- "start:build-front": "tsc -p ./src/frontend/tsconfig.json --watch",
- "start:build-back": "tsc -p ./src/backend/tsconfig.json --watch",
- "start:run": "nodemon ./src/backend/js/index.js",
+ "start:build-front": "tsc -p ./frontend/tsconfig.json --watch",
+ "start:build-back": "tsc -p ./backend/tsconfig.json --watch",
+ "start:run": "nodemon ./backend/js/index.js",
"start": "concurrently \"yarn:start:*\""
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
+ "express-session": "^1.17.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/concurrently": "^6.0.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
+ "@types/express-session": "1.17.0",
"@types/node-fetch": "^2.5.8",
"@types/nodemon": "^1.19.0",
"concurrently": "^6.0.0",