-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
116 lines (116 loc) · 3.35 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
{
"name": "rooster-x",
"version": "1.0.9",
"main": "build/main.js",
"license": "MIT",
"author": "Rotem Grimberg <rotemgrim@gmail.com>",
"description": "Movie and series file manager",
"scripts": {
"fix": "tslint --fix 'src/**/*.ts'",
"start": "npm-run-all build run-electron",
"debug": "npm-run-all build run-electron-debug",
"build": "npm-run-all run-webpack",
"pack": "npm-run-all build builder:pack",
"builder:pack": "electron-builder --dir --win",
"builder:dist": "electron-builder --win",
"run-webpack": "webpack --config webpack.config.js",
"run-electron": "electron .",
"run-electron-debug": "electron --inspect-brk=5858 .",
"rebuild-sqlite": "electron-rebuild -f -w sqlite3",
"resync-typeorm": "ts-node typeorm schema:sync",
"install-builder-deps": "electron-builder install-app-deps",
"postinstall": "npm-run-all rebuild-sqlite install-builder-deps"
},
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.2.7",
"@xtuc/long": "^4.2.2",
"adm-zip": "^0.4.13",
"arch": "^2.1.1",
"axios": "^0.18.0",
"axios-cookiejar-support": "^0.4.2",
"axios-https-proxy-fix": "^0.17.1",
"bluebird": "^3.5.3",
"chokidar": "^2.1.5",
"compare-versions": "^3.4.0",
"core-js": "^3.0.0",
"electron-debug": "^2.1.0",
"electron-is": "^3.0.0",
"electron-is-dev": "^1.1.0",
"electron-json-storage": "^4.1.6",
"find-process": "^1.4.1",
"html-entities": "^1.2.1",
"imdb-api": "^4.0.2",
"linqts": "^1.12.2",
"lit-element": "^2.1.0",
"lodash": "^4.17.11",
"md5-file": "^4.0.0",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"node-html-parser": "^1.1.15",
"parse-torrent-name": "^0.5.4",
"readdirp": "^2.2.1",
"reflect-metadata": "^0.1.13",
"regedit": "^3.0.2",
"rxjs": "^6.4.0",
"screenshot-desktop": "^1.7.0",
"source-map-support": "^0.5.11",
"sprintf-js": "^1.1.2",
"sql.js": "^1.11.0",
"sqlite3": "^5.0.2",
"string-score": "^1.0.1",
"tiny-worker": "^2.1.2",
"tough-cookie": "^3.0.1",
"tslib": "^2.6.3",
"typedi": "^0.8.0",
"typeorm": "^0.3.20",
"typeorm-typedi-extensions": "^0.2.3",
"upath": "^1.1.2",
"uuid": "^3.3.2",
"webpack": "^4.29.6",
"winattr": "^2.0.0",
"winreg": "^1.2.4",
"winston": "^3.2.1",
"xlsx": "^0.14.1",
"xlsx-populate": "^1.19.1",
"zip-dir": "^1.0.2"
},
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/mkdirp": "^0.5.2",
"@types/node": "^11.12.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"electron": "4.0.3",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^2.0.0",
"sass": "^1.77.8",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"typescript": "^4.9.5",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
},
"build": {
"appId": "rooster-x",
"asar": true,
"directories": {
"buildResources": "src/renderer/images",
"output": "dist"
},
"files": [
"build/**/*",
"package.json"
],
"extends": null
}
}