Files
plane/silo/package.json
2025-03-25 16:24:30 +05:30

78 lines
2.2 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": {
"dev": "turbo run develop",
"develop": "nodemon --config \"./nodemon.json\"/",
"build": "rm -rf dist && tsc --noEmit && tsup --minify",
"start": "node dist/start.cjs",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "eslint . --ext .ts",
"test": "jest",
"check-types": "tsc --noEmit",
"check-format": "prettier --check \"**/*.{ts,tsx,md}\"",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@flatfile/api": "^1.12.0",
"@flatfile/listener": "^1.1.1",
"@flatfile/plugin-record-hook": "^1.11.2",
"@linear/sdk": "^30.0.0",
"@octokit/openapi-webhooks-types": "^8.3.0",
"@plane/sdk": "*",
"@types/cookie-parser": "^1.4.8",
"@types/jest": "^29.5.14",
"amqplib": "^0.10.4",
"axios": "^1.8.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csv-string": "^4.1.1",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.22.4",
"drizzle-orm": "^0.33.0",
"express": "^4.21.2",
"express-winston": "^4.2.0",
"multer": "^1.4.5-lts.1",
"node-html-parser": "^6.1.13",
"postgres": "^3.4.4",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.2.6",
"type-fest": "^4.26.1",
"uuid": "^11.0.3",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@plane/eslint-config": "*",
"@plane/etl": "*",
"@plane/types": "*",
"@plane/typescript-config": "*",
"@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-winston": "^4.0.2",
"@types/jest": "^29.5.14",
"@types/multer": "^1.4.12",
"@types/redis": "^4.0.11",
"adm-zip": "^0.5.16",
"node-html-parser": "^6.1.13",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-to-zod": "^3.13.0",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.4.0",
"typescript": "^5.3.3"
}
}