mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
* [SILO-454] refactor: add common code for decorators, logger packages - refactor Controller related decorators and use those in silo - add silo's logger config in packages and use it for live - remove redundant code across silo, live * remove usages of local logger module * add test in prebuild phase for silo * use logger from packages and linter changes * chore: remove E_INTEGRATION_KEYS enum from etl/core * chore: use E_INTEGRATION_KEYS from types * remove unused file-tree.ts file
92 lines
2.8 KiB
JSON
92 lines
2.8 KiB
JSON
{
|
|
"name": "silo",
|
|
"version": "0.24.1",
|
|
"description": "A simple, lightweight, and fast integrations engine.",
|
|
"private": true,
|
|
"author": "engineering@plane.so",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"prebuild": "jest",
|
|
"dev": "nodemon --config \"./nodemon.json\"/",
|
|
"start": "node dist/start.cjs",
|
|
"test": "jest",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
|
|
"check:lint": "eslint . --max-warnings 398",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint": "eslint . --fix",
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\""
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "^3.802.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.810.0",
|
|
"@dotenvx/dotenvx": "^1.47.6",
|
|
"@flatfile/api": "^1.12.0",
|
|
"@flatfile/listener": "^1.1.1",
|
|
"@flatfile/plugin-record-hook": "^1.11.2",
|
|
"@linear/sdk": "^30.0.0",
|
|
"@makeplane/plane-node-sdk": "^0.1.4",
|
|
"@octokit/openapi-webhooks-types": "^8.3.0",
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/decorators": "workspace:*",
|
|
"@plane/sdk": "workspace:*",
|
|
"@slack/bolt": "^4.4.0",
|
|
"@plane/logger": "workspace:*",
|
|
"@types/bluebird": "^3.5.42",
|
|
"@types/cookie-parser": "^1.4.8",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/pg": "^8.11.14",
|
|
"@types/turndown": "^5.0.5",
|
|
"amqplib": "^0.10.4",
|
|
"axios": "catalog:",
|
|
"bluebird": "^3.7.2",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"csv-string": "^4.1.1",
|
|
"express": "^4.21.2",
|
|
"express-winston": "^4.2.0",
|
|
"jira.js": "^4.0.1",
|
|
"marked": "^15.0.4",
|
|
"mimetics": "^1.0.4",
|
|
"node-html-parser": "^6.1.13",
|
|
"pg": "^8.15.5",
|
|
"postgres": "^3.4.4",
|
|
"redis": "^4.7.0",
|
|
"reflect-metadata": "^0.2.2",
|
|
"source-map-support": "^0.5.21",
|
|
"ts-jest": "^29.2.6",
|
|
"turndown": "^7.2.0",
|
|
"type-fest": "^4.26.1",
|
|
"uuid": "^11.0.3",
|
|
"winston": "^3.14.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/etl": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@slack/types": "^2.14.0",
|
|
"@t3-oss/env-core": "^0.11.1",
|
|
"@types/adm-zip": "^0.5.5",
|
|
"@types/amqplib": "^0.10.5",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "4.17.21",
|
|
"@types/express-winston": "^4.0.2",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/marked": "^6.0.0",
|
|
"@types/redis": "^4.0.11",
|
|
"adm-zip": "^0.5.16",
|
|
"jest": "^30.0.5",
|
|
"node-html-parser": "^6.1.13",
|
|
"nodemon": "^3.1.4",
|
|
"prettier": "^3.3.3",
|
|
"ts-node": "^10.9.2",
|
|
"tsc-alias": "^1.8.10",
|
|
"tsconfig-paths": "^4.2.0",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|