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

75 lines
1.8 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": {
2019-03-16 15:40:48 +02:00
"test": "jest src",
2018-12-14 06:47:58 +02:00
"start-dev": "ts-node src/index.ts",
"start-watch": "nodemon",
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
},
"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",
2019-03-16 11:24:41 +02:00
"eris": "github:abalabahaha/eris#dev",
"escape-string-regexp": "^1.0.5",
"humanize-duration": "^3.15.0",
"js-yaml": "^3.13.1",
2019-04-20 19:02:06 +03:00
"knub": "^20.0.0",
"lodash.at": "^4.6.0",
"lodash.chunk": "^4.2.0",
2018-07-29 18:46:49 +03:00
"lodash.difference": "^4.5.0",
"lodash.has": "^4.5.2",
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.14",
"typescript": "^3.3.3333",
"uuid": "^3.3.2"
},
"devDependencies": {
2019-03-16 15:40:48 +02:00
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/node": "^10.12.0",
2019-01-15 03:04:47 +02:00
"@types/tmp": "0.0.33",
2019-03-16 15:40:48 +02:00
"babel-jest": "^24.5.0",
"husky": "^1.3.1",
2019-03-16 15:40:48 +02:00
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"nodemon": "^1.17.5",
2019-02-06 20:08:06 +02:00
"prettier": "^1.16.4",
2018-12-14 06:47:58 +02:00
"rimraf": "^2.6.2",
"tslint": "^5.13.1",
"tslint-config-prettier": "^1.18.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
2018-07-01 03:35:51 +03:00
}
}