-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.2 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
{
"productName": "Manga Scraper",
"description": "Manga Scraper",
"version": "0.1.0",
"name": "MangaScraper",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron main.js",
"start-prod": "cross-env NODE_ENV=production electron main.js",
"prod": "npm-run-all clean build start-prod",
"test": "mocha",
"clean": "gulp clean",
"build": "gulp",
"pack-mac": "gulp pack-mac",
"pack-win": "gulp pack-win",
"pack-lin": "gulp pack-lin",
"pack-all": "npm-run-all pack-mac pack-win pack-lin",
"clean-build-mac": "npm-run-all clean build pack-mac",
"clean-build-all": "npm-run-all clean build pack-all"
},
"repository": {
"type": "git",
"url": "https://github.com/FrantisekGazo/MangaScraperJS"
},
"keywords": [
"Electron",
"quick",
"start",
"tutorial"
],
"author": "GitHub",
"license": "MIT",
"devDependencies": {
"browserify": "^13.0.0",
"cross-env": "^1.0.7",
"del": "^2.2.0",
"electron": "^1.4.5",
"electron-devtools-installer": "^2.0.1",
"electron-hot-loader": "0.8.0",
"electron-packager": "^5.2.1",
"envify": "^3.4.0",
"enzyme": "^2.0.0",
"expect": "^1.14.0",
"gulp": "^3.9.1",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.7",
"mocha": "^2.4.5",
"npm-run-all": "^1.5.2",
"react-addons-test-utils": "^15.3.2",
"reactify": "^1.1.1",
"redux-devtools": "^3.3.1",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.7.4",
"uglify-js": "github:mishoo/UglifyJS2#harmony",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watch-glob": "^0.1.3"
},
"dependencies": {
"image-downloader": "^2.0.0",
"image-size": "^0.5.0",
"immutability-helper": "^2.0.0",
"material-ui": "^0.17.0",
"pdfkit": "^0.8.0",
"prop-types": "^15.5.8",
"react": "^15.5.3",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.5.3",
"react-redux": "^4.4.5",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"react-virtualized": "^9.0.0",
"redux": "^3.6.0",
"redux-logic": "^0.11.6",
"rxjs": "^5.1.1",
"x-ray": "^2.3.1"
}
}