| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "@growi/slackbot-proxy",
- "version": "0.9.0-RC",
- "license": "MIT",
- "scripts": {
- "build": "yarn tsc",
- "tsc": "tsc -b --verbose tsconfig.build.json && tsc-alias -p tsconfig.build.json",
- "tsc:w": "tsc -w",
- "dev:ci": "yarn dev --ci",
- "dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register -r dotenv-flow/config src/index.ts",
- "start:prod:ci": "yarn start:prod --ci",
- "start:prod": "cross-env NODE_ENV=production node -r dotenv-flow/config ../../dist/slackbot-proxy/index.js",
- "test": "yarn test:lint && yarn test:coverage",
- "test:unit": "cross-env NODE_ENV=test jest --passWithNoTests",
- "test:coverage": "yarn test:unit",
- "test:lint": "eslint src --ext .ts",
- "test:lint:fix": "eslint src --ext .ts --fix"
- },
- "dependencies": {
- "@growi/slack": "0.9.0-RC",
- "@slack/oauth": "^2.0.1",
- "@slack/web-api": "^6.1.0",
- "@tsed/common": "^6.34.3",
- "@tsed/di": "^6.34.3",
- "@tsed/platform-express": "^6.34.3",
- "@tsed/swagger": "^6.34.3",
- "@tsed/typeorm": "^6.34.3",
- "compression": "^1.7.4",
- "dotenv-flow": "^3.2.0",
- "mysql2": "^2.2.5",
- "typeorm": "^0.2.31"
- },
- "devDependencies": {
- "@tsed/core": "^6.34.3",
- "@tsed/exceptions": "^6.34.3",
- "@tsed/json-mapper": "^6.34.3",
- "@tsed/schema": "^6.34.3",
- "@typescript-eslint/eslint-plugin": "^4.18.0",
- "@typescript-eslint/parser": "^4.18.0",
- "eslint-import-resolver-typescript": "^2.4.0",
- "ts-jest": "^26.5.4",
- "ts-node": "^9.1.1",
- "ts-node-dev": "^1.1.6",
- "tsc-alias": "1.2.6",
- "tsconfig-paths": "^3.9.0",
- "typescript": "^4.2.3"
- }
- }
|