2016-12-05 17:25:20 -05:00
|
|
|
{
|
|
|
|
"name": "modmailbot",
|
2020-05-24 19:01:45 -04:00
|
|
|
"version": "2.31.0-beta.0",
|
2016-12-05 17:25:20 -05:00
|
|
|
"description": "",
|
2017-03-01 02:59:15 -05:00
|
|
|
"license": "MIT",
|
2016-12-05 17:25:20 -05:00
|
|
|
"main": "src/index.js",
|
|
|
|
"scripts": {
|
2018-02-11 14:54:30 -05:00
|
|
|
"start": "node src/index.js",
|
2020-08-12 17:10:32 -04:00
|
|
|
"watch": "supervisor -n exit -w src src/index.js",
|
2017-09-19 13:23:55 -04:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2020-08-12 20:37:57 -04:00
|
|
|
"lint": "eslint ./src ./db/migrations",
|
|
|
|
"lint-fix": "eslint --fix ./src ./db/migrations",
|
2020-08-13 16:55:45 -04:00
|
|
|
"generate-config-jsdoc": "node src/data/generateCfgJsdoc.js",
|
2020-08-16 16:40:44 -04:00
|
|
|
"generate-plugin-api-docs": "jsdoc2md -t docs/plugin-api-template.hbs src/pluginApi.js > docs/plugin-api.md",
|
2020-08-13 16:55:45 -04:00
|
|
|
"create-migration": "knex migrate:make"
|
2016-12-05 17:25:20 -05:00
|
|
|
},
|
2019-06-09 10:31:17 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Dragory/modmailbot"
|
|
|
|
},
|
2016-12-05 17:25:20 -05:00
|
|
|
"dependencies": {
|
2020-08-16 12:13:07 -04:00
|
|
|
"ajv": "^6.12.4",
|
2020-08-12 17:16:28 -04:00
|
|
|
"eris": "^0.13.3",
|
2018-03-13 01:24:01 -04:00
|
|
|
"humanize-duration": "^3.12.1",
|
2019-12-02 18:51:11 -05:00
|
|
|
"ini": "^1.3.5",
|
2020-08-12 16:18:42 -04:00
|
|
|
"json-schema-to-jsdoc": "^1.0.0",
|
2020-08-12 17:14:56 -04:00
|
|
|
"json5": "^2.1.3",
|
2020-08-12 17:12:58 -04:00
|
|
|
"knex": "^0.21.4",
|
2019-10-26 04:54:43 -04:00
|
|
|
"knub-command-manager": "^6.1.0",
|
2019-12-02 11:26:54 -05:00
|
|
|
"mime": "^2.4.4",
|
2020-08-16 12:13:16 -04:00
|
|
|
"moment": "^2.27.0",
|
2019-09-17 18:34:17 -04:00
|
|
|
"mv": "^2.1.1",
|
2020-08-12 20:31:48 -04:00
|
|
|
"mysql2": "^2.1.0",
|
2020-08-16 12:15:18 -04:00
|
|
|
"public-ip": "^4.0.2",
|
2020-07-08 21:05:28 -04:00
|
|
|
"sqlite3": "^5.0.0",
|
2019-12-02 11:26:54 -05:00
|
|
|
"tmp": "^0.1.0",
|
2020-08-12 17:13:58 -04:00
|
|
|
"transliteration": "^2.1.11",
|
2020-08-16 12:13:23 -04:00
|
|
|
"uuid": "^8.3.0"
|
2016-12-05 17:25:20 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-08-16 12:15:23 -04:00
|
|
|
"eslint": "^7.7.0",
|
2020-08-12 17:08:04 -04:00
|
|
|
"husky": "^4.2.5",
|
2020-08-16 16:40:44 -04:00
|
|
|
"jsdoc-to-markdown": "^6.0.1",
|
2020-08-12 17:08:04 -04:00
|
|
|
"lint-staged": "^10.2.11",
|
2020-08-12 17:10:32 -04:00
|
|
|
"supervisor": "^0.12.0"
|
2020-05-24 19:39:41 -04:00
|
|
|
},
|
|
|
|
"engines": {
|
2020-08-12 20:40:34 -04:00
|
|
|
"node": ">=12.0.0 <14.0.0"
|
2020-08-12 17:08:04 -04:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": "eslint --fix"
|
2016-12-05 17:25:20 -05:00
|
|
|
}
|
|
|
|
}
|