-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
86 lines (86 loc) · 3.03 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
{
"name": "epgstation",
"version": "2.10.0",
"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 src/db/migrations/${npm_config_db}/${npm_config_name} -d ./ormconfig.js",
"orm-run": "typeorm migration:run -d ./ormconfig.js",
"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.6.8",
"body-parser": "1.20.2",
"cors": "2.8.5",
"diskusage-ng": "1.0.4",
"eventsource": "2.0.2",
"express": "4.19.2",
"express-openapi": "12.1.3",
"file-type": "16.5.4",
"inversify": "6.0.2",
"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.2.2",
"socket.io": "4.7.5",
"source-map-support": "0.5.21",
"sqlite3": "5.1.7",
"swagger-ui-dist": "5.17.2",
"typeorm": "0.3.20",
"url-join": "4.0.1"
},
"devDependencies": {
"@types/body-parser": "1.19.5",
"@types/eventsource": "1.1.15",
"@types/express": "4.17.21",
"@types/file-type": "10.9.1",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.0",
"@types/minimist": "1.2.5",
"@types/mkdirp": "1.0.2",
"@types/multer": "1.4.9",
"@types/node": "18.11.9",
"@types/socket.io": "3.0.1",
"@types/source-map-support": "0.5.10",
"@types/sqlite3": "3.1.11",
"@types/url-join": "4.0.3",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"prettier": "3.2.5",
"typescript": "5.4.5"
}
}