-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
137 lines (137 loc) · 3.83 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "ihaapi-ts",
"version": "2.6.2",
"description": "A maybe-pretty-fast API endpoint mainly made for VTuber stuff.",
"main": "src/main.ts",
"scripts": {
"clean": "rimraf build",
"compile": "swc src -d build",
"copy-assets": "node tools/copyAssets",
"swaggerdoc": "node tools/buildSwagger",
"swaggercheck": "node tools/validateSwagger",
"build": "npm-run-all clean swaggerdoc copy-assets compile build:cleanup",
"build:cleanup": "node tools/cleanupBuild",
"dev": "npm-run-all swaggerdoc dev:start",
"dev:start": "nodemon",
"prod": "npm-run-all build prod:start",
"prod:start": "node build/main.js",
"prodpriv": "npm-run-all build prodpriv:start",
"prodpriv:start": "node build/main_private.js",
"test": "jest",
"lint": "eslint src/",
"testall": "npm-run-all test swaggerdoc swaggercheck",
"tsync": "typesync && pnpm install"
},
"engines": {
"node": ">= 16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihateani-me/ihaapi-ts.git"
},
"keywords": [
"vtuber",
"api",
"express",
"steam",
"hltb",
"u2",
"saucenao",
"iqdb",
"ascii2d",
"nhentai"
],
"author": "N4O",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihateani-me/ihaapi-ts/issues"
},
"homepage": "https://github.com/ihateani-me/ihaapi-ts#readme",
"devDependencies": {
"@apidevtools/swagger-parser": "10.1.0",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.61",
"@swc/jest": "0.2.26",
"@types/base64-url": "2.2.0",
"@types/cheerio": "0.22.31",
"@types/compression": "1.7.0",
"@types/consolidate": "0.14.0",
"@types/cors": "2.8.13",
"@types/ejs": "3.1.2",
"@types/eslint": "8.40.0",
"@types/eslint-config-prettier": "6.11.0",
"@types/express": "4.17.17",
"@types/express-serve-static-core": "4.17.35",
"@types/fs-extra": "11.0.1",
"@types/hepburn": "1.2.0",
"@types/jest": "29.5.1",
"@types/lodash": "4.14.195",
"@types/luxon": "3.3.0",
"@types/node": "20.2.5",
"@types/nodemon": "1.19.2",
"@types/qs": "6.9.7",
"@types/shelljs": "0.8.12",
"@types/swagger-jsdoc": "6.0.1",
"@types/whatwg-url": "11.0.0",
"@types/ws": "8.5.4",
"@types/xml2js": "0.4.11",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"ejs-lint": "2.0.0",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"fs-extra": "11.1.1",
"jest": "29.5.0",
"nodemon": "2.0.22",
"npm-run-all": "4.1.5",
"openapi-types": "12.1.3",
"rimraf": "5.0.1",
"shelljs": "0.8.5",
"swagger-jsdoc": "6.2.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"typesync": "0.11.1"
},
"dependencies": {
"@apollo/datasource-rest": "6.0.0",
"@apollo/server": "4.7.1",
"@apollo/utils.keyvadapter": "3.0.0",
"@graphql-tools/schema": "10.0.0",
"@keyv/redis": "2.5.8",
"@typegoose/typegoose": "11.2.0",
"altair-express-middleware": "5.0.25",
"axios": "1.4.0",
"base64-url": "2.3.3",
"body-parser": "1.20.2",
"bson": "5.3.0",
"cheerio": "1.0.0-rc.12",
"compression": "1.7.4",
"consolidate": "0.16.0",
"cors": "2.8.5",
"dotenv": "16.0.3",
"ejs": "3.1.9",
"express": "4.18.2",
"express-winston": "4.2.0",
"form-data": "4.0.0",
"graphql": "16.6.0",
"graphql-subscriptions": "2.0.0",
"graphql-type-json": "0.3.2",
"graphql-ws": "5.13.1",
"hepburn": "1.2.0",
"ioredis": "5.3.2",
"keyv": "4.5.2",
"lodash": "4.17.21",
"luxon": "3.3.0",
"mime-type-check": "2.0.0",
"mongodb": "5.5.0",
"mongoose": "7.2.1",
"prom-client": "14.2.0",
"qs": "6.11.2",
"unofficial-jisho-api": "2.3.0",
"whatwg-url": "13.0.0",
"winston": "3.9.0",
"ws": "8.13.0",
"xml2js": "0.6.0"
}
}