initial, express-typescript config, react-vite created

This commit is contained in:
Mikayla Dobson
2022-11-17 11:17:20 -06:00
commit 31995bde8e
38 changed files with 5678 additions and 0 deletions

23
server/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "server",
"version": "1.0.0",
"description": "REST API for recipe manager",
"main": "dist/index.js",
"scripts": {
"start": "tsc && nodemon dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"nodemon": "^2.0.20",
"tslint": "^6.1.3",
"typescript": "^4.9.3"
}
}