ramirez/package.json

59 lines
1.5 KiB
JSON

{
"name": "modmailbot",
"version": "2.31.0-beta.1",
"description": "",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"watch": "supervisor -n exit -w src src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src ./db/migrations",
"lint-fix": "eslint --fix ./src ./db/migrations",
"generate-config-jsdoc": "node src/data/generateCfgJsdoc.js",
"generate-plugin-api-docs": "jsdoc2md -t docs/plugin-api-template.hbs src/pluginApi.js > docs/plugin-api.md",
"create-migration": "knex migrate:make"
},
"repository": {
"type": "git",
"url": "https://github.com/Dragory/modmailbot"
},
"dependencies": {
"ajv": "^6.12.4",
"eris": "^0.13.3",
"humanize-duration": "^3.12.1",
"ini": "^1.3.5",
"json-schema-to-jsdoc": "^1.0.0",
"json5": "^2.1.3",
"knex": "^0.21.4",
"knub-command-manager": "^6.1.0",
"mime": "^2.4.4",
"moment": "^2.27.0",
"mv": "^2.1.1",
"mysql2": "^2.1.0",
"public-ip": "^4.0.2",
"sqlite3": "^5.0.0",
"tmp": "^0.1.0",
"transliteration": "^2.1.11",
"uuid": "^8.3.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"husky": "^4.2.5",
"jsdoc-to-markdown": "^6.0.1",
"lint-staged": "^10.2.11",
"supervisor": "^0.12.0"
},
"engines": {
"node": ">=12.0.0 <14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
}
}