ramirez/package.json

56 lines
1.3 KiB
JSON

{
"name": "modmailbot",
"version": "2.31.0-beta.0",
"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",
"lint-fix": "eslint --fix ./src",
"generate-config-jsdoc": "node src/data/generateCfgJsdoc.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Dragory/modmailbot"
},
"dependencies": {
"ajv": "^6.12.3",
"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.24.0",
"mv": "^2.1.1",
"mysql2": "^2.1.0",
"public-ip": "^4.0.0",
"sqlite3": "^5.0.0",
"tmp": "^0.1.0",
"transliteration": "^2.1.11",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"supervisor": "^0.12.0"
},
"engines": {
"node": ">=10.0.0 <14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
}
}