initial commit
parents
Showing
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.prettierrc
0 → 100644
nodemon.json
0 → 100644
package.json
0 → 100644
{ | ||
"name": "node_template", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"dev": "nodemon", | ||
"lint": "eslint", | ||
"lint:fix": "eslint --fix" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"express": "^4.18.2", | ||
"ts-node": "^10.9.1", | ||
"tslib": "^2.6.0", | ||
"typescript": "^5.1.6" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "^4.17.17", | ||
"@types/node": "^20.4.2", | ||
"@typescript-eslint/eslint-plugin": "^6.0.0", | ||
"@typescript-eslint/parser": "^6.0.0", | ||
"eslint": "^8.45.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"nodemon": "^3.0.1", | ||
"prettier": "^3.0.0" | ||
} | ||
} |
public/.gitkeep
0 → 100644
src/app.ts
0 → 100644
src/index.ts
0 → 100644
src/middlewares/logger.ts
0 → 100644
src/routes/article.route.ts
0 → 100644
tsconfig.json
0 → 100644
yarn.lock
0 → 100644
Please
register
or
sign in
to comment