Project struct
Showing
.dockerignore
0 → 100644
.editorconfig
0 → 100644
.env.example
0 → 100644
.eslintignore
0 → 100644
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
.husky/pre-commit
0 → 100755
.prettierrc
0 → 100644
Dockerfile
0 → 100644
README.md
0 → 100644
Todo.md
0 → 100644
docker-compose.yml
0 → 100644
jest.config.js
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": "pedagoogando", | |||
| "version": "1.0.0", | |||
| "main": "index.js", | |||
| "license": "MIT", | |||
| "scripts": { | |||
| "build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored", | |||
| "dev": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules --respawn src/shared/infra/http/server.ts", | |||
| "prepare": "husky install", | |||
| "lint": "eslint src/**/*.ts --fix" | |||
| }, | |||
| "dependencies": { | |||
| "@prisma/client": "^3.12.0", | |||
| "@types/bcryptjs": "^2.4.2", | |||
| "@types/express": "^4.17.13", | |||
| "@types/node": "^17.0.23", | |||
| "bcryptjs": "^2.4.3", | |||
| "cors": "^2.8.5", | |||
| "dotenv": "^16.0.0", | |||
| "express": "^4.17.3", | |||
| "express-async-errors": "^3.1.1", | |||
| "prisma": "^3.12.0", | |||
| "reflect-metadata": "^0.1.13", | |||
| "ts-node": "^10.7.0", | |||
| "ts-node-dev": "^1.1.8", | |||
| "tsyringe": "^4.6.0", | |||
| "typescript": "^4.6.3" | |||
| }, | |||
| "devDependencies": { | |||
| "@types/cors": "^2.8.12", | |||
| "eslint": "^8.12.0", | |||
| "husky": "^7.0.4", | |||
| "prettier": "^2.6.2", | |||
| "tsconfig-paths": "^3.14.1" | |||
| } | |||
| } |
prisma/schema.prisma
0 → 100644
scripts/script.mjs
0 → 100644
src/shared/error/AppError.ts
0 → 100644
src/shared/infra/http/app.ts
0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
tsconfig.json
0 → 100644
This diff is collapsed.
yarn-error.log
0 → 100644
This diff is collapsed.
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment