Initial commit
Showing
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierrc.js
0 → 100644
.vscode/setting.json
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | |||
| "name": "api", | |||
| "version": "1.0.0", | |||
| "description": "", | |||
| "main": "index.js", | |||
| "scripts": { | |||
| "start": "node dist/app.js", | |||
| "dev": "nodemon src/app.ts", | |||
| "build": "tsc -p ." | |||
| }, | |||
| "author": "", | |||
| "license": "ISC", | |||
| "devDependencies": { | |||
| "@types/express": "^4.17.11", | |||
| "@types/node": "^14.14.37", | |||
| "@typescript-eslint/eslint-plugin": "^4.21.0", | |||
| "@typescript-eslint/parser": "^4.21.0", | |||
| "eslint": "^7.23.0", | |||
| "eslint-config-prettier": "^8.1.0", | |||
| "eslint-plugin-prettier": "^3.3.1", | |||
| "nodemon": "^2.0.7", | |||
| "prettier": "^2.2.1", | |||
| "ts-node": "^9.1.1", | |||
| "typescript": "^4.2.3" | |||
| }, | |||
| "dependencies": { | |||
| "@types/mysql": "^2.15.18", | |||
| "express": "^4.17.1", | |||
| "http-status-codes": "^2.1.4", | |||
| "mysql": "^2.18.1" | |||
| } | |||
| } |
src/app.ts
0 → 100644
src/database/qldh-mysql.ts
0 → 100644
src/models/Device.ts
0 → 100644
src/models/MeetingRoom.ts
0 → 100644
src/routes/demo-api.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment