3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00
zeppelin/package.json
2018-08-05 01:05:40 +03:00

57 lines
1.4 KiB
JSON

{
"name": "newmodbot",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"start-watch": "nodemon",
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"format": "prettier --write \"./**/*.ts\"",
"db-migrate": "knex migrate:latest",
"db-rollback": "knex migrate:rollback"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/knex": "0.0.64",
"@types/lodash.at": "^4.6.3",
"@types/moment-timezone": "^0.5.6",
"@types/node": "^8.0.50",
"dotenv": "^4.0.0",
"emoji-regex": "^7.0.0",
"eris": "^0.8.6",
"escape-string-regexp": "^1.0.5",
"humanize-duration": "^3.15.0",
"knex": "0.12.6",
"knub": "^10.0.0",
"lodash.at": "^4.6.0",
"lodash.chunk": "^4.2.0",
"lodash.difference": "^4.5.0",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"moment-timezone": "^0.5.21",
"mysql2": "^1.6.0",
"tlds": "^1.203.1",
"ts-node": "^3.3.0",
"typescript": "^2.9.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"nodemon": "^1.17.5",
"lint-staged": "^7.2.0",
"prettier": "^1.8.2",
"husky": "^0.14.3",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0"
}
}