OwlCyberSecurity - MANAGER
Edit File: package.json
{ "name": "@adminjs/express", "version": "6.1.1", "description": "This is an official AdminJS plugin which integrates it with Express.js framework", "main": "lib/index.js", "type": "module", "exports": { ".": { "import": "./lib/index.js", "types": "./lib/index.d.ts" } }, "scripts": { "dev": "rm -rf lib && tsc --watch", "build": "rm -rf lib && tsc", "example:simple": "nodemon", "example:auth": "nodemon --config nodemon.auth.json", "test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.json --runInBand --detectOpenHandles", "lint": "eslint './**/*.ts'", "check:all": "yarn lint && yarn build && yarn test", "release": "semantic-release" }, "repository": { "type": "git", "url": "git+https://github.com/SoftwareBrothers/adminjs-expressjs.git" }, "keywords": [ "expressjs", "admin", "adminjs", "admin-panel" ], "author": "MichaĆ Laskowski", "license": "SEE LICENSE IN LICENSE", "bugs": { "url": "https://github.com/SoftwareBrothers/adminjs-expressjs/issues" }, "homepage": "https://github.com/SoftwareBrothers/adminjs-expressjs#readme", "peerDependencies": { "adminjs": "^7.4.0", "express": ">=4.18.2", "express-formidable": "^1.2.0", "express-session": ">=1.17.3", "tslib": "^2.5.0" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "devDependencies": { "@adminjs/mongoose": "^4.0.0", "@commitlint/config-conventional": "^17.4.4", "@jest/globals": "^29.5.0", "@semantic-release/git": "^9.0.0", "@types/express": "^4.17.17", "@types/express-formidable": "^1.2.0", "@types/express-session": "^1.17.6", "@types/jest": "^26.0.15", "@types/node": "^18.15.3", "@typescript-eslint/eslint-plugin": "^5.53.0", "@typescript-eslint/parser": "^5.53.0", "adminjs": "^7.4.0", "commitlint": "^17.4.4", "eslint": "^8.35.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "express": "^4.18.2", "express-formidable": "^1.2.0", "express-session": "^1.17.3", "husky": "^4.3.0", "jest": "^29.5.0", "mongoose": "^6.10.0", "nodemon": "^2.0.6", "prettier": "^2.8.4", "semantic-release": "^17.2.4", "semantic-release-slack-bot": "^1.6.2", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "typescript": "^4.9.5" }, "dependencies": {} }