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

65 lines
1.6 KiB
JSON
Raw Normal View History

2018-07-01 03:35:51 +03:00
{
"name": "zeppelin",
2018-07-01 03:35:51 +03:00
"version": "0.0.1",
"description": "",
"private": true,
2018-07-01 03:35:51 +03:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2018-12-14 06:47:58 +02:00
"start-dev": "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-12-14 06:47:58 +02:00
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"build": "rimraf dist && tsc",
"start-prod": "cross-env NODE_ENV=production node dist/index.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",
"ajv": "^6.7.0",
2018-12-14 06:47:58 +02:00
"cross-env": "^5.2.0",
2018-07-01 03:35:51 +03:00
"dotenv": "^4.0.0",
2018-12-15 21:16:17 +02:00
"emoji-regex": "^7.0.1",
"eris": "^0.9.0",
"escape-string-regexp": "^1.0.5",
"humanize-duration": "^3.15.0",
"js-yaml": "^3.12.0",
"knub": "^16.3.0",
"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",
2019-01-15 03:04:47 +02:00
"tmp": "0.0.33",
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",
2019-01-15 03:04:47 +02:00
"@types/tmp": "0.0.33",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.8.2",
2018-12-14 06:47:58 +02:00
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0"
2018-07-01 03:35:51 +03:00
}
}