{
  "name": "@twake/twake-backend",
  "version": "1.0.0",
  "description": "Twake backend",
  "scripts": {
    "build": "npm run build:clean && npm run build:ts && npm run build:copy-assets",
    "build:ts": "tsc",
    "build:clean": "rimraf ./dist",
    "build:copy-assets": "npm run build:copy-config",
    "build:copy-config": "cp -R config dist",
    "dev": "tsc-watch --project . --noClear --outDir ./dist --onSuccess \"nodemon ./dist/server.js\" | pino-pretty",
    "dev:cli": "tsc-watch --project . --noClear --outDir ./dist --onSuccess \"nodemon ./dist/cli/index.js workspace user\" | pino-pretty",
    "dev:cli-dry": "tsc-watch --project . --noClear --outDir ./dist --onSuccess \"nodemon ./dist/cli/index.js console merge --dry\" | pino-pretty",
    "dev:debug": "tsc-watch --project . --noClear --outDir ./dist --onSuccess \"nodemon --inspect=0.0.0.0 ./dist/server.js\" | pino-pretty",
    "lint": "eslint . --ext .ts --quiet --fix",
    "lint:no-fix": "eslint . --ext .ts",
    "lint:prettier": "prettier --config .prettierrc 'src/**/*.ts'",
    "serve": "node --max-http-header-size=30000 dist/server.js",
    "serve:watch": "nodemon dist/server.js | pino-pretty",
    "serve:debug": "nodemon --inspect dist/server.js | pino-pretty",
    "start": "npm run serve",
    "test": "jest --forceExit --coverage --verbose --detectOpenHandles | pino-pretty",
    "test:watch": "npm run test -- --watchAll | pino-pretty",
    "test:e2e": "jest test/e2e --forceExit --coverage --verbose --detectOpenHandles --testTimeout=20000 | pino-pretty",
    "test:unit": "jest test/unit --forceExit --coverage --verbose --detectOpenHandles | pino-pretty",
    "test:unit:watch": "npm run test:unit -- --watchAll | pino-pretty",
    "kill": "kill $(lsof -t -i:3000) | exit 0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Twake/twake-backend.git"
  },
  "author": "Twake",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Twake/twake-backend/issues"
  },
  "homepage": "https://github.com/Twake/twake-backend#readme",
  "bin": {
    "twake-cli": "./bin/twake-cli"
  },
  "devDependencies": {
    "@babel/core": "^7.11.6",
    "@babel/plugin-proposal-class-properties": "^7.10.4",
    "@babel/plugin-proposal-decorators": "^7.10.5",
    "@babel/preset-env": "^7.11.5",
    "@babel/preset-typescript": "^7.10.4",
    "@types/amqp-connection-manager": "^2.0.10",
    "@types/analytics-node": "^3.1.4",
    "@types/chai": "^4.2.12",
    "@types/cli-table": "^0.3.0",
    "@types/config": "0.0.36",
    "@types/eslint": "^7.2.3",
    "@types/jest": "^26.0.14",
    "@types/lodash": "^4.14.165",
    "@types/mongodb": "^3.5.31",
    "@types/node": "^14.11.2",
    "@types/pino": "^6.3.2",
    "@types/socket.io": "^2.1.11",
    "@types/socket.io-client": "^1.4.34",
    "@types/socket.io-redis": "^1.0.26",
    "@types/supertest": "2.0.4",
    "@types/uuid": "^8.3.0",
    "@types/ws": "^7.2.7",
    "@typescript-eslint/eslint-plugin": "^4.2.0",
    "@typescript-eslint/parser": "^4.2.0",
    "babel-jest": "^26.5.2",
    "babel-plugin-parameter-decorator": "^1.0.16",
    "chai": "^4.2.0",
    "eslint": "^7.10.0",
    "eslint-config-prettier": "^6.15.0",
    "eslint-plugin-prettier": "^3.1.4",
    "jest": "^26.4.2",
    "nodemon": "2.0.4",
    "pino-pretty": "^4.5.0",
    "prettier": "^2.1.2",
    "rimraf": "^3.0.2",
    "socket.io-client": "^2.3.1",
    "supertest": "4.0.2",
    "ts-jest": "^26.4.0",
    "ts-node": "^9.0.0",
    "ts-node-dev": "^1.0.0",
    "tsc-watch": "^4.2.9",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "@sentry/node": "^6.2.0",
    "@sentry/tracing": "^6.2.0",
    "amqp-connection-manager": "^3.2.1",
    "amqplib": "^0.7.1",
    "analytics-node": "^3.5.0",
    "axios": "^0.21.1",
    "cassandra-driver": "^4.6.0",
    "class-transformer": "^0.3.1",
    "cli-table": "^0.3.6",
    "config": "^3.3.2",
    "deep-object-diff": "^1.1.0",
    "fastify": "3.9.2",
    "fastify-cors": "^4.1.0",
    "fastify-jwt": "^2.2.0",
    "fastify-plugin": "^2.3.4",
    "fastify-sensible": "^3.0.1",
    "fastify-websocket": "^2.0.11",
    "generate-password": "^1.6.0",
    "lodash": "^4.17.21",
    "mongodb": "^3.6.2",
    "ora": "^5.3.0",
    "pino": "^6.8.0",
    "reflect-metadata": "^0.1.13",
    "rxjs": "^6.6.3",
    "socket.io": "^2.3.0",
    "socket.io-redis": "^5.4.0",
    "socketio-jwt": "^4.6.2",
    "uuid": "^8.3.2",
    "yargs": "^16.2.0"
  }
}
