forked from l3tnun/EPGStation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
{
"name": "epgstation",
"version": "2.7.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": "npm run build-server && npm run build-client",
"build-server": "npm run lint && npm run format && npm run compile",
"build-client": "cd client && npm run build",
"lint": "eslint --fix --ext .ts src/",
"format": "prettier --check --write 'src/**/*.ts'",
"compile": "tsc",
"watch": "tsc --watch",
"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-timedmetadater": "4.0.10",
"aribts": "2.1.12",
"axios": "1.4.0",
"body-parser": "1.20.2",
"cors": "2.8.5",
"diskusage-ng": "1.0.4",
"express": "4.18.2",
"express-openapi": "12.1.3",
"file-type": "16.5.4",
"inversify": "6.0.1",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"log4js": "6.9.1",
"minimist": "1.2.8",
"mirakurun": "3.9.0-rc.4",
"mkdirp": "3.0.1",
"multer": "1.4.3",
"mysql": "2.18.1",
"openapi-types": "12.1.3",
"reflect-metadata": "0.1.13",
"socket.io": "4.7.1",
"source-map-support": "0.5.21",
"sqlite3": "5.1.6",
"swagger-ui-dist": "5.1.1",
"typeorm": "0.3.17",
"url-join": "4.0.1"
},
"devDependencies": {
"@types/body-parser": "1.19.2",
"@types/express": "4.17.17",
"@types/file-type": "10.9.1",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.195",
"@types/minimist": "1.2.2",
"@types/mkdirp": "1.0.2",
"@types/multer": "1.4.7",
"@types/node": "18.11.9",
"@types/socket.io": "3.0.1",
"@types/source-map-support": "0.5.6",
"@types/sqlite3": "3.1.8",
"@types/url-join": "4.0.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"prettier": "3.0.0",
"typescript": "5.1.6"
}
}