zappyzep/package.json

58 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\"",
"typeorm": "ts-node ./node_modules/typeorm/cli.js"
2018-07-01 03:35:51 +03:00
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/lodash.at": "^4.6.3",
"@types/moment-timezone": "^0.5.6",
2018-07-01 03:35:51 +03:00
"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",
"js-yaml": "^3.12.0",
2018-11-24 19:30:42 +02:00
"knub": "^12.2.2",
"lodash.at": "^4.6.0",
"lodash.chunk": "^4.2.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",
"moment-timezone": "^0.5.21",
"mysql": "^2.16.0",
"reflect-metadata": "^0.1.12",
"tlds": "^1.203.1",
2018-07-01 03:35:51 +03:00
"ts-node": "^3.3.0",
"typeorm": "^0.2.8",
2018-12-14 06:30:26 +02:00
"typescript": "^3.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/node": "^10.12.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.8.2",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0"
2018-07-01 03:35:51 +03:00
}
}