Created the package.json & yarn.lock

This commit is contained in:
2023-01-14 17:16:13 +01:00
parent 52318f6c40
commit efec141a26
2 changed files with 810 additions and 0 deletions

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "backend",
"version": "1.0.0-ALPHA",
"description": "The LicenseAPI Backend",
"main": "server.ts",
"repository": "https://github.com/LicenseAPI/Backend.git",
"private": true,
"scripts": {
"dev": "nodemon --watch \"src/**\" src/server.ts"
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}