npm init api

This commit is contained in:
j-weissen 2022-11-29 11:37:43 +01:00
parent 1857b03687
commit e70c9fd2e1
3 changed files with 1323 additions and 0 deletions

1306
backend/api/package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

17
backend/api/package.json Normal file
View file

@ -0,0 +1,17 @@
{
"name": "express-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "ts-node src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "jweissen",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}

0
backend/api/src/app.ts Normal file
View file