This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "animeloop-server-ts",
"version": "1.0.0",
"description": "Animeloop server based on TypeScript",
"main": "index.js",
"private": true,
"repository": "https://github.com/shincurry/animeloop-server-ts.git",
"author": "ShinCurry <[email protected]>",
"scripts": {
"lint": "node_modules/.bin/tslint --project tsconfig.json --config tslint.json",
"test": "node_modules/.bin/mocha",
"build": "node_modules/.bin/tsc",
"watch": "node_modules/.bin/tsc -w",
"dev:api": "NODE_ENV=development node_modules/.bin/nodemon --stack_trace_limit=100 dist/entrypoints/api.js",
"dev:automator": "NODE_ENV=development node_modules/.bin/nodemon --stack_trace_limit=100 dist/entrypoints/automator.js",
"dev:twitterbot": "NODE_ENV=development node_modules/.bin/nodemon --stack_trace_limit=100 dist/entrypoints/twitterbot.js",
"dev:telegrambot": "NODE_ENV=development node_modules/.bin/nodemon --stack_trace_limit=100 dist/entrypoints/telegrambot.js",
"start:api": "NODE_ENV=production node dist/entrypoints/api.js",
"start:automator": "NODE_ENV=production node dist/entrypoints/automator.js",
"start:twitterbot": "NODE_ENV=production node dist/entrypoints/twitterbot.js",
"start:telegrambot": "NODE_ENV=production node dist/entrypoints/telegrambot.js",
"db:sync": "node dist/entrypoints/syncer.js"
},
"workspaces": [
"src/jojo/*"
],
"_moduleAliases": {
"jojo-base": "dist/jojo/base/index",
"jojo-sequelize": "dist/jojo/sequelize/index",
"jojo-mongodb": "dist/jojo/mongodb/index",
"jojo-graphql": "dist/jojo/graphql/index",
"jojo-anilist": "dist/jojo/anilist/index",
"jojo-tracemoe": "dist/jojo/tracemoe/index",
"jojo-transmission": "dist/jojo/transmission/index",
"jojo-horrible-subs": "dist/jojo/horribleSubs/index",
"jojo-minio": "dist/jojo/minio/index",
"jojo-twitter": "dist/jojo/twitter/index",
"jojo-telegram": "dist/jojo/telegram/index"
},
"typings": "types",
"devDependencies": {
"@types/async": "^3.0.3",
"@types/bluebird": "^3.5.28",
"@types/body-parser": "^1.17.1",
"@types/bull": "^3.10.5",
"@types/chai": "^4.2.4",
"@types/chai-as-promised": "^7.1.2",
"@types/connect-redis": "^0.0.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.144",
"@types/luxon": "^1.15.2",
"@types/mocha": "^5.2.7",
"@types/multer": "^1.4.0",
"@types/node": "^12.12.0",
"@types/node-schedule": "^1.2.4",
"@types/sharp": "^0.23.0",
"@types/shell-escape": "^0.2.0",
"@types/shelljs": "^0.8.5",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.3",
"@types/xml2js": "^0.4.5",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"mocha-steps": "^1.1.0",
"nodemon": "^2.0.4",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.7.x",
"typescript-tslint-plugin": "^0.5.4"
},
"dependencies": {
"@sentry/node": "5.7.1",
"async": "^3.1.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bull": "^3.11.0",
"connect-redis": "^4.0.3",
"cors": "^2.8.4",
"express": "^4.17.1",
"image-downloader": "^4.0.1",
"lodash": "^4.17.19",
"log4js": "^5.3.0",
"luxon": "^1.21.0",
"mkdirp": "^1.0.4",
"module-alias": "^2.2.2",
"multer": "^1.4.2",
"node-schedule": "^1.3.2",
"reflect-metadata": "^0.1.12",
"request-promise-native": "^1.0.9",
"sharp": "^0.26.0",
"shell-escape": "^0.2.0",
"shelljs": "^0.8.4",
"types": "^0.1.1",
"uuid": "^8.3.0"
}
}