create API server

This commit is contained in:
Takeshi Kimata
2024-02-04 12:05:06 +09:00
parent 182f021b39
commit cdaa99b89a
7 changed files with 1388 additions and 0 deletions

16
backend/package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"mysql": "^2.18.1"
}
}