curupiras
Version:
Curupiras é um template back-end que utiliza Express e TypeScript
57 lines (56 loc) • 1.74 kB
JSON
{
"name": "curupiras",
"version": "1.1.1",
"description": "Curupiras é um template back-end que utiliza Express e TypeScript",
"keywords": [
"Express",
"Template",
"Back-end",
"TypeScript",
"TypeORM"
],
"author": "Thadeu Castelo Branco Ramos <thadeucbr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thadeucbr/back-end-template/issues"
},
"homepage": "https://github.com/thadeucbr/back-end-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/thadeucbr/back-end-template"
},
"main": "src/shared/server.ts",
"bin": "./bin/cli.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/server.ts",
"start": "ts-node -r tsconfig-paths/register --transpile-only src/shared/server.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migrate": "npm run typeorm -- migration:run",
"lint": "eslint --fix --ext .js,.ts ."
},
"dependencies": {
"argon2": "^0.28.4",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
}
}