Advertisement
flcs

package.json LEO

Aug 4th, 2022 (edited)
977
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   "name": "projeto1",
  3.   "version": "1.0.0",
  4.   "description": "Typescript project",
  5.   "main": "src/index.ts",
  6.   "license": "UNLICENSED",
  7.   "repository": {
  8.     "type": "git",
  9.     "url": "git+https://gitlabiff.ddns.net/fernando/projeto1.git"
  10.   },
  11.   "scripts": {
  12.     "start": "node dist/index.js",
  13.     "start:dev": "nodemon",
  14.     "build": "tsc --build",
  15.     "clean": "tsc --build --clean",
  16.     "test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
  17.     "test:verbose": "jest --passWithNoTests --runInBand",
  18.     "test:watch": "jest --watch --verbose",
  19.     "coverage": "jest --collect-coverage",
  20.     "lint": "eslint .",
  21.     "lint:fix": "eslint . --fix",
  22.     "test:staged": "npm test -- --findRelatedTests",
  23.     "test:ci": "jest"
  24.   },
  25.   "author": "@delivery-much",
  26.   "dependencies": {
  27.     "amqplib": "^0.7.1",
  28.     "date-fns": "^2.22.1",
  29.     "dotenv": "^8.2.0",
  30.     "express": "^4.17.1",
  31.     "i18n": "^0.13.3",
  32.     "joi": "^17.4.0",
  33.     "jwt-decode": "^3.1.2",
  34.     "mongoose": "^5.12.13",
  35.     "mysql2": "^2.2.5",
  36.     "nanoid": "^3.1.23",
  37.     "nanoid-dictionary": "^4.3.0",
  38.     "reflect-metadata": "^0.1.13",
  39.     "tsyringe": "^4.5.0",
  40.     "typeorm": "^0.2.34",
  41.     "mongodb": "^3.6.9"
  42.   },
  43.   "devDependencies": {
  44.     "merge": "^2.1.1",
  45.     "@shelf/jest-mongodb": "^1.2.5",
  46.     "@types/amqplib": "^0.5.17",
  47.     "@types/amqp": "^0.2.4",
  48.     "@types/express": "^4.17.12",
  49.     "@types/i18n": "^0.13.0",
  50.     "@types/jest": "^26.0.23",
  51.     "@types/nanoid-dictionary": "^4.2.0",
  52.     "@types/node": "^14.14.37",
  53.     "@types/supertest": "^2.0.11",
  54.     "@typescript-eslint/eslint-plugin": "^4.21.0",
  55.     "eslint": "^7.23.0",
  56.     "eslint-config-airbnb-typescript": "^12.0.0",
  57.     "eslint-import-resolver-typescript": "^2.3.0",
  58.     "eslint-plugin-import": "^2.22.1",
  59.     "eslint-plugin-jest": "^24.1.0",
  60.     "eslint-plugin-promise": "^4.2.1",
  61.     "husky": "^4.2.5",
  62.     "jest": "^27.0.4",
  63.     "jest-mock-extended": "^1.0.16",
  64.     "lint-staged": "^11.0.0",
  65.     "nodemon": "^2.0.7",
  66.     "supertest": "^6.1.3",
  67.     "ts-jest": "^27.0.3",
  68.     "ts-node": "^9.1.1",
  69.     "typescript": "^4.2.3"
  70.   },
  71.   "husky": {
  72.     "hooks": {
  73.       "pre-commit": "lint-staged"
  74.     }
  75.   },
  76.   "lint-staged": {
  77.     "*.ts": [
  78.       "npm run test:staged"
  79.     ]
  80.   }
  81. }
  82.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement