forked from l3tnun/EPGStation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3 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
{
"name": "epgstation",
"version": "2.2.1",
"description": "DTV Software in Japan.",
"main": "dist/index.js",
"scripts": {
"all-install": "npm i --no-save && cd client && npm i --no-save",
"start": "node dist/index.js",
"build": "gulp build && cd client && npm run build",
"build-server": "gulp build",
"build-client": "cd client && npm run build",
"watch": "gulp watch",
"clean": "gulp clean",
"orm-gen": "typeorm migration:generate -n ",
"backup": "node dist/DBTools.js -m backup -o",
"restore": "node dist/DBTools.js -m restore -o",
"v1migrate": "node dist/V1MigrationTool.js -i",
"install-win-service": "winser -i -a",
"uninstall-win-service": "winser -r -x",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l3tnun/EPGStation-V2.git"
},
"author": "l3tnun",
"license": "MIT",
"bugs": {
"url": "https://github.com/l3tnun/EPGStation-V2/issues"
},
"homepage": "https://github.com/l3tnun/EPGStation-V2#readme",
"dependencies": {
"arib-subtitle-unrecognizer": "3.0.0",
"aribts": "2.1.12",
"axios": "0.21.1",
"body-parser": "1.19.0",
"diskusage-ng": "1.0.1",
"express": "4.17.1",
"express-openapi": "7.3.0",
"file-type": "16.2.0",
"inversify": "5.0.5",
"js-yaml": "4.0.0",
"lodash": "4.17.20",
"log4js": "6.3.0",
"minimist": "1.2.5",
"mirakurun": "3.5.0",
"mkdirp": "1.0.4",
"multer": "1.4.2",
"mysql": "2.18.1",
"openapi-types": "7.2.3",
"reflect-metadata": "0.1.13",
"socket.io": "2.4.1",
"source-map-support": "0.5.19",
"sqlite3": "5.0.0",
"swagger-ui-dist": "3.43.0",
"typeorm": "0.2.31",
"url-join": "4.0.1"
},
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/express": "4.17.11",
"@types/file-type": "10.9.1",
"@types/js-yaml": "4.0.0",
"@types/lodash": "4.14.168",
"@types/minimist": "1.2.1",
"@types/mkdirp": "1.0.1",
"@types/mongodb": "3.6.7",
"@types/multer": "1.4.5",
"@types/node": "14.14.27",
"@types/socket.io": "2.1.12",
"@types/source-map-support": "0.5.3",
"@types/sqlite3": "3.1.7",
"@types/url-join": "4.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"del": "6.0.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"gulp": "4.0.2",
"gulp-eslint": "6.0.0",
"gulp-plumber": "1.2.1",
"gulp-sourcemaps": "3.0.0",
"gulp-typescript": "5.0.1",
"i": "0.3.6",
"prettier": "2.2.1",
"ts-loader": "8.0.17",
"ts-node": "9.1.1",
"typescript": "4.1.5"
}
}