90 lines
2.5 KiB
JSON
90 lines
2.5 KiB
JSON
{
|
|
"name": "zeppelin",
|
|
"version": "0.0.1",
|
|
"description": "",
|
|
"private": true,
|
|
"scripts": {
|
|
"start-bot-dev": "ts-node src/index.ts",
|
|
"start-bot-prod": "cross-env NODE_ENV=production node dist/index.js",
|
|
"watch-bot": "nodemon --config nodemon-bot.json",
|
|
"build": "rimraf dist && tsc",
|
|
"start-api-dev": "ts-node src/api/index.ts",
|
|
"start-api-prod": "cross-env NODE_ENV=production node dist/api/index.js",
|
|
"watch-api": "nodemon --config nodemon-api.json",
|
|
"format": "prettier --write \"./src/**/*.ts\"",
|
|
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
|
|
"migrate": "npm run typeorm -- migration:run",
|
|
"migrate-rollback": "npm run typeorm -- migration:revert",
|
|
"test": "jest src"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"cross-env": "^5.2.0",
|
|
"dotenv": "^4.0.0",
|
|
"emoji-regex": "^8.0.0",
|
|
"eris": "^0.10.1",
|
|
"escape-string-regexp": "^1.0.5",
|
|
"express": "^4.17.0",
|
|
"fp-ts": "^2.0.1",
|
|
"humanize-duration": "^3.15.0",
|
|
"io-ts": "^2.0.0",
|
|
"js-yaml": "^3.13.1",
|
|
"knub": "^20.3.1",
|
|
"last-commit-log": "^2.1.0",
|
|
"lodash.chunk": "^4.2.0",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"lodash.difference": "^4.5.0",
|
|
"lodash.intersection": "^4.4.0",
|
|
"lodash.isequal": "^4.5.0",
|
|
"lodash.pick": "^4.4.0",
|
|
"moment-timezone": "^0.5.21",
|
|
"mysql": "^2.16.0",
|
|
"passport": "^0.4.0",
|
|
"passport-custom": "^1.0.5",
|
|
"passport-oauth2": "^1.5.0",
|
|
"reflect-metadata": "^0.1.12",
|
|
"seedrandom": "^3.0.1",
|
|
"tlds": "^1.203.1",
|
|
"tmp": "0.0.33",
|
|
"ts-node": "^3.3.0",
|
|
"typeorm": "^0.2.14",
|
|
"typescript": "^3.5.3",
|
|
"uuid": "^3.3.2",
|
|
"vuex": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.5.5",
|
|
"@babel/preset-env": "^7.5.5",
|
|
"@babel/preset-typescript": "^7.3.3",
|
|
"@types/cors": "^2.8.5",
|
|
"@types/express": "^4.16.1",
|
|
"@types/jest": "^24.0.15",
|
|
"@types/js-yaml": "^3.12.1",
|
|
"@types/lodash.at": "^4.6.3",
|
|
"@types/moment-timezone": "^0.5.6",
|
|
"@types/node": "^10.12.0",
|
|
"@types/passport": "^1.0.0",
|
|
"@types/passport-oauth2": "^1.4.8",
|
|
"@types/tmp": "0.0.33",
|
|
"babel-jest": "^24.8.0",
|
|
"husky": "^1.3.1",
|
|
"jest": "^24.8.0",
|
|
"lint-staged": "^8.1.5",
|
|
"nodemon": "^1.17.5",
|
|
"prettier": "^1.16.4",
|
|
"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"
|
|
]
|
|
}
|
|
}
|