2019-11-02 22:11:26 +02:00
|
|
|
{
|
|
|
|
"name": "@zeppelin/backend",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2019-11-30 17:04:59 +02:00
|
|
|
"watch": "cross-env NODE_ENV=development tsc-watch --onSuccess \"node start-dev.js\"",
|
2019-11-02 22:11:26 +02:00
|
|
|
"build": "rimraf dist && tsc",
|
2020-01-12 10:28:38 +02:00
|
|
|
"start-bot-dev": "cross-env NODE_ENV=development node -r ./register-tsconfig-paths.js --unhandled-rejections=strict --inspect=127.0.0.1:9229 dist/backend/src/index.js",
|
|
|
|
"start-bot-prod": "cross-env NODE_ENV=production node -r ./register-tsconfig-paths.js --unhandled-rejections=strict dist/backend/src/index.js",
|
2020-07-29 00:43:49 +03:00
|
|
|
"watch-bot": "cross-env NODE_ENV=development tsc-watch --onSuccess \"npm run start-bot-dev\"",
|
2020-01-12 10:28:38 +02:00
|
|
|
"start-api-dev": "cross-env NODE_ENV=development node -r ./register-tsconfig-paths.js --unhandled-rejections=strict --inspect=127.0.0.1:9239 dist/backend/src/api/index.js",
|
|
|
|
"start-api-prod": "cross-env NODE_ENV=production node -r ./register-tsconfig-paths.js --unhandled-rejections=strict dist/backend/src/api/index.js",
|
2020-07-29 00:43:49 +03:00
|
|
|
"watch-api": "cross-env NODE_ENV=development tsc-watch --onSuccess \"npm run start-api-dev\"",
|
2019-11-30 17:04:59 +02:00
|
|
|
"typeorm": "node -r ./register-tsconfig-paths.js ./node_modules/typeorm/cli.js",
|
|
|
|
"migrate-prod": "npm run typeorm -- migration:run",
|
|
|
|
"migrate-dev": "npm run build && npm run typeorm -- migration:run",
|
|
|
|
"migrate-rollback-prod": "npm run typeorm -- migration:revert",
|
|
|
|
"migrate-rollback-dev": "npm run build && npm run typeorm -- migration:revert",
|
|
|
|
"test": "npm run build && npm run run-tests",
|
|
|
|
"run-tests": "ava",
|
|
|
|
"test-watch": "tsc-watch --onSuccess \"npx ava\""
|
2019-11-02 22:11:26 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-01-14 01:52:22 +11:00
|
|
|
"@types/sharp": "^0.23.1",
|
2020-01-14 18:08:49 +11:00
|
|
|
"@types/twemoji": "^12.1.0",
|
2020-07-30 23:23:35 +03:00
|
|
|
"bufferutil": "^4.0.1",
|
2019-11-02 22:11:26 +02:00
|
|
|
"cors": "^2.8.5",
|
|
|
|
"cross-env": "^5.2.0",
|
|
|
|
"deep-diff": "^1.0.2",
|
|
|
|
"dotenv": "^4.0.0",
|
|
|
|
"emoji-regex": "^8.0.0",
|
2020-07-03 21:48:56 +03:00
|
|
|
"eris": "^0.13.3",
|
2020-07-30 23:23:35 +03:00
|
|
|
"erlpack": "github:abalabahaha/erlpack",
|
2019-11-02 22:11:26 +02:00
|
|
|
"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",
|
2020-08-02 02:55:44 +03:00
|
|
|
"knub": "^30.0.0-beta.20",
|
2020-07-05 15:30:08 +03:00
|
|
|
"knub-command-manager": "^8.1.1",
|
2019-11-02 22:11:26 +02:00
|
|
|
"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",
|
2020-08-09 20:21:01 +03:00
|
|
|
"parse-color": "^1.0.0",
|
2019-11-02 22:11:26 +02:00
|
|
|
"passport": "^0.4.0",
|
|
|
|
"passport-custom": "^1.0.5",
|
|
|
|
"passport-oauth2": "^1.5.0",
|
|
|
|
"reflect-metadata": "^0.1.12",
|
2020-08-05 01:15:36 +03:00
|
|
|
"regexp-worker": "^1.1.0",
|
2019-11-02 22:11:26 +02:00
|
|
|
"safe-regex": "^2.0.2",
|
|
|
|
"seedrandom": "^3.0.1",
|
2020-01-14 01:52:22 +11:00
|
|
|
"sharp": "^0.23.4",
|
2020-08-05 03:38:14 +03:00
|
|
|
"strip-combining-marks": "^1.0.0",
|
2019-11-02 22:11:26 +02:00
|
|
|
"tlds": "^1.203.1",
|
|
|
|
"tmp": "0.0.33",
|
2019-11-08 00:03:02 +02:00
|
|
|
"tsconfig-paths": "^3.9.0",
|
2020-01-14 18:08:49 +11:00
|
|
|
"twemoji": "^12.1.4",
|
2019-11-02 22:11:26 +02:00
|
|
|
"typeorm": "^0.2.14",
|
2020-07-30 23:23:35 +03:00
|
|
|
"uuid": "^3.3.2",
|
|
|
|
"zlib-sync": "^0.1.7"
|
2019-11-02 22:11:26 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@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",
|
2020-07-05 04:59:53 +03:00
|
|
|
"@types/node": "^14.0.14",
|
2019-11-02 22:11:26 +02:00
|
|
|
"@types/passport": "^1.0.0",
|
|
|
|
"@types/passport-oauth2": "^1.4.8",
|
|
|
|
"@types/passport-strategy": "^0.2.35",
|
2019-12-01 01:01:20 +02:00
|
|
|
"@types/safe-regex": "^1.1.2",
|
2019-11-02 22:11:26 +02:00
|
|
|
"@types/tmp": "0.0.33",
|
2020-07-06 01:50:28 +03:00
|
|
|
"ava": "^3.10.0",
|
2019-11-02 22:11:26 +02:00
|
|
|
"rimraf": "^2.6.2",
|
2019-12-08 02:05:35 +02:00
|
|
|
"source-map-support": "^0.5.16",
|
2019-11-30 17:04:59 +02:00
|
|
|
"tsc-watch": "^4.0.0",
|
2020-07-05 04:59:53 +03:00
|
|
|
"typescript": "^3.9.6"
|
2019-11-02 22:11:26 +02:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"files": [
|
2019-11-30 17:04:59 +02:00
|
|
|
"dist/backend/src/**/*.test.js"
|
2019-11-07 22:52:40 +02:00
|
|
|
],
|
2019-11-02 22:11:26 +02:00
|
|
|
"require": [
|
2019-11-30 17:04:59 +02:00
|
|
|
"./register-tsconfig-paths.js"
|
2019-11-02 22:11:26 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|