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

56 lines
1.4 KiB
JSON
Raw Normal View History

2018-07-01 03:35:51 +03:00
{
"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",
2018-07-01 03:35:51 +03:00
"precommit": "lint-staged",
"postcommit": "git update-index --again",
2018-07-07 18:02:57 +03:00
"format": "prettier --write \"./**/*.ts\"",
2018-07-12 02:49:15 +03:00
"db-migrate": "knex migrate:latest",
2018-07-07 18:02:57 +03:00
"db-rollback": "knex migrate:rollback"
2018-07-01 03:35:51 +03:00
},
"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",
2018-07-01 03:35:51 +03:00
"@types/node": "^8.0.50",
"dotenv": "^4.0.0",
"emoji-regex": "^7.0.0",
2018-07-01 03:35:51 +03:00
"eris": "^0.8.6",
"escape-string-regexp": "^1.0.5",
"humanize-duration": "^3.15.0",
2018-07-01 03:35:51 +03:00
"knex": "^0.14.6",
2018-07-31 19:37:18 +03:00
"knub": "^9.6.2",
"lodash.at": "^4.6.0",
2018-07-29 18:46:49 +03:00
"lodash.difference": "^4.5.0",
2018-07-30 23:35:44 +03:00
"lodash.intersection": "^4.4.0",
2018-07-29 18:46:49 +03:00
"lodash.isequal": "^4.5.0",
2018-07-01 03:35:51 +03:00
"mariasql": "^0.2.6",
"moment-timezone": "^0.5.21",
"tlds": "^1.203.1",
2018-07-01 03:35:51 +03:00
"ts-node": "^3.3.0",
2018-07-12 02:49:15 +03:00
"typescript": "^2.9.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"
2018-07-01 03:35:51 +03:00
}
}