{
  "name": "google-meet-recording-mover",
  "version": "1.0.0",
  "main": "dist/index.js",
  "license": "UNLICENSED",
  "private": true,
  "scripts": {
    "compile": "tsc",
    "dev": "concurrently \"tsc -w\" \"nodemon --watch ./dist/ --exec run-s start\"",
    "lint": "run-p -l -c --aggregate-output lint:*",
    "lint:tsc": "tsc",
    "lint:eslint": "eslint --cache './**/*.{js,jsx,ts,tsx}'",
    "lint:prettier": "prettier --check './**/*.{js,jsx,ts,tsx}'",
    "fix": "run-s fix:prettier fix:eslint",
    "fix:eslint": "yarn lint:eslint --fix",
    "fix:prettier": "yarn lint:prettier --write",
    "deploy": "bash scripts/create_env_yaml.sh && run-s compile && gcloud functions deploy moveGoogleMeetRecording --runtime nodejs20 --env-vars-file .env.yaml --trigger-http --allow-unauthenticated --entry-point moveGoogleMeetRecording --region asia-northeast1 --service-account google-meet-recording-mover@corpinfra.iam.gserviceaccount.com",
    "start": "functions-framework --target=moveGoogleMeetRecording --source=dist/"
  },
  "dependencies": {
    "@google-cloud/storage": "^7.11.1",
    "@slack/web-api": "^7.0.4",
    "axios": "^1.7.2",
    "googleapis": "^137.1.0"
  },
  "devDependencies": {
    "@google-cloud/functions-framework": "^3.4.0",
    "@types/node": "^20.12.12",
    "concurrently": "^8.2.2",
    "eslint": "^8.57.0",
    "eslint-config-timetree": "^1.13.0",
    "nodemon": "^3.1.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.2.5",
    "typescript": "^5.4.5"
  }
}
