express-api-cli
Version:
Cli tool for generating an express project. Instead of wasting extra time creating your project structure, start building right away
61 lines • 1.9 kB
JSON
{
"name": "express-starter",
"version": "0.0.1",
"description": "",
"main": "build/index.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"start": "tsc && node build/index.js",
"test": "cross-env NODE_ENV=test mocha --exit --recursive --require ts-node/register --timeout=5000 tests/**/*.ts",
"test:coverage": "cross-env NODE_ENV=test nyc --require ts-node/register --reporter lcov --reporter text mocha --exit --recursive --timeout=5000 tests/**/*.ts",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"author": "Tolustar",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^17.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.0",
"http-status-codes": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.2",
"morgan": "^1.10.0",
"@sendgrid/mail": "^7.2.5",
"mailgun-js": "^0.22.0",
"mysql2": "^2.1.0",
"sequelize": "^6.3.5",
"ts-node-dev": "^1.0.0-pre.62",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.12",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/hapi__joi": "^17.1.4",
"@types/helmet": "0.0.48",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.2.0",
"supertest": "^4.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}