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

45 lines
1 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",
"format": "prettier --write \"./**/*.ts\""
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/knex": "0.0.64",
"@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-01 04:31:24 +03:00
"knub": "^9.4.3",
2018-07-01 03:35:51 +03:00
"mariasql": "^0.2.6",
"moment-timezone": "^0.5.21",
2018-07-01 03:35:51 +03:00
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
},
"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
}
}