mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
* [SILO-454] chore: refactor decorator, logger packages - add registerControllers function abstracting both rest, ws controllers - update logger to a simple json based logger * fix: logger instance and middleware * fix: type and module resolutions * fix: lodash type package update * fix: bypass lint errors in decorators * chore: format changes --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@plane/logger",
|
|
"version": "0.28.0",
|
|
"license": "AGPL-3.0",
|
|
"description": "Logger shared across multiple apps internally",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup --minify",
|
|
"dev": "tsup --watch",
|
|
"check:lint": "eslint . --max-warnings 0",
|
|
"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}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"express-winston": "^4.2.0",
|
|
"winston": "^3.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.14.9",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|