aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-05-11 17:34:16 +0100
committerAutumn <git@autumnfo.rest>2026-05-11 17:34:16 +0100
commitd51a6e14f75e3394ec9ca8ebc72fb10bf693edc7 (patch)
treecc5032e0c1e011a512fdd65bb7168dab786203b2 /package.json
parentfb2b0b965e13b4c33a27421d03e0e87978fda4ab (diff)
[app] created base ExpressJS app
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 4 insertions, 0 deletions
diff --git a/package.json b/package.json
index 822721d..849bba8 100644
--- a/package.json
+++ b/package.json
@@ -10,10 +10,14 @@
"start": "nodemon --watch 'src/**/*' --watch '.env' --exec 'ts-node' src/server.ts"
},
"devDependencies": {
+ "@types/express": "5.0.6",
"nodemon": "3.1.14",
"ts-node": "10.9.2",
"tsc-alias": "1.8.17",
"tsconfig-paths": "4.2.0",
"typescript": "6.0.3"
+ },
+ "dependencies": {
+ "express": "5.2.1"
}
}