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",
|
2018-07-07 14:27:54 +03:00
|
|
|
"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\"",
|
|
|
|
"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",
|
2018-07-09 02:49:51 +03:00
|
|
|
"@types/lodash.at": "^4.6.3",
|
2018-07-07 15:39:56 +03:00
|
|
|
"@types/moment-timezone": "^0.5.6",
|
2018-07-01 03:35:51 +03:00
|
|
|
"@types/node": "^8.0.50",
|
|
|
|
"dotenv": "^4.0.0",
|
|
|
|
"eris": "^0.8.6",
|
|
|
|
"knex": "^0.14.6",
|
2018-07-09 02:49:51 +03:00
|
|
|
"knub": "^9.4.9",
|
|
|
|
"lodash.at": "^4.6.0",
|
2018-07-01 03:35:51 +03:00
|
|
|
"mariasql": "^0.2.6",
|
2018-07-07 15:39:56 +03:00
|
|
|
"moment-timezone": "^0.5.21",
|
2018-07-01 03:35:51 +03:00
|
|
|
"ts-node": "^3.3.0",
|
|
|
|
"typescript": "^2.6.1"
|
2018-07-07 14:27:54 +03:00
|
|
|
},
|
|
|
|
"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
|
|
|
}
|
|
|
|
}
|