-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
132 lines (132 loc) · 4 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
{
"name": "PelisTime",
"version": "1.0.3",
"description": "Un espacio multimedia basado en peerflix, React y empaquetado con electron.",
"main": "index.js",
"scripts": {
"start-server": "node server.js",
"start-dev-server": "DEBUG=true node server.js",
"start": "electron .",
"start-dev": "NODE_ENV=development DEBUG=true electron .",
"all:linux": "npm run build && npm run pack",
"all:osx": "npm run build && npm run installer:osx",
"all:win": "npm run build && npm run pack && npm run installer:win",
"build": "webpack --config webpack.config.production.js",
"pack": "node pack.js",
"installer:win": "npm run installer:win:64 && npm run installer:win:32",
"installer:win:64": "electron-builder dist/PelisTime-win32-x64 --platform=win --out=dist/win-64bits/ --config=config.json",
"installer:win:32": "electron-builder dist/PelisTime-win32-ia32 --platform=win --out=dist/win-32bits/ --config=config.json",
"installer:osx": "build -m",
"test": "jscs . && node ./test/index.js"
},
"dependencies": {
"history": "3.0.0",
"material-ui": "0.15.4",
"network-address": "1.1.0",
"numeral": "1.5.3",
"peerflix": "0.35.1",
"q": "1.4.1",
"react": "15.3.0",
"react-addons-css-transition-group": "15.3.0",
"react-dom": "15.3.0",
"react-image-fallback": "3.0.0",
"react-redux": "4.4.5",
"react-router": "2.6.1",
"react-tap-event-plugin": "1.0.0",
"read-torrent": "1.3.0",
"redux": "3.5.2",
"redux-thunk": "2.1.0",
"superagent": "2.2.0",
"torrent-health": "ghondar/torrent-health",
"wcjs-player": "6.0.1",
"wcjs-prebuilt": "3.0.0",
"zip-folder": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"cheerio": "0.20.0",
"clean-webpack-plugin": "0.1.10",
"css-loader": "0.23.1",
"cssnext-loader": "1.0.1",
"electron-builder": "5.25.1",
"electron-packager": "7.5.1",
"electron-prebuilt": "1.3.1",
"file-loader": "0.9.0",
"fs-extra": "0.30.0",
"jsx-loader": "0.13.2",
"react-hot-loader": "1.3.0",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.3.0",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.0.11",
"single-line-log": "1.1.1",
"strip-loader": "0.1.2",
"style-loader": "0.13.1",
"tape": "4.6.0",
"unzip": "0.1.11",
"url-loader": "0.5.7",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"wcjs-prebuilt": {
"runtime": "electron",
"runtimeVersion": "v1.3.1",
"version": "v0.2.6"
},
"build": {
"appId": "PelisTime",
"files": ["static\/**\/*","node_modules\/**\/*", "index.js", "index.html", "package.json"],
"asar": false,
"category": "Multimedia",
"mac" : {
"title": "PelisTime",
"background": "img/background.png",
"icon": "img/osx.icns",
"icon-size": 80,
"contents": [
{ "x": 338, "y": 172, "type": "link", "path": "/Applications" },
{ "x": 100, "y": 172, "type": "file" }
]
},
"win" : {
"title" : "PelisTime",
"version" : "1.0.0",
"publisher": "PelisTime Inc.",
"icon" : "img/windows.ico",
"verbosity": 1
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghondar/PelisTime.git"
},
"keywords": [
"react",
"reactjs",
"redux",
"react-router",
"electron",
"material-ui",
"pelicula",
"movie",
"tvshow",
"serie",
"torrent"
],
"author": "Ghondar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghondar/PelisTime/issues"
},
"homepage": "https://github.com/ghondar/PelisTime#readme"
}