-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "Mancuspian-Converter",
"version": "0.1.0",
"main": "app/main.js",
"license": "MIT",
"author": "Michael Michailidis",
"homepage": "./",
"repository": "b52/electron-es6-react",
"description": "This is a convertion tool from RAF (Fugi Raw Format) to PNG with Resizing",
"scripts": {
"postinstall": "install-app-deps",
"clean": "gulp clean",
"build": "gulp build",
"start": "gulp start",
"test": "gulp test",
"release": "gulp release"
},
"dependencies": {
"antd": "^3.2.1",
"glob": "^7.1.2",
"image-size": "^0.6.2",
"libraw": "^0.1.4",
"mkdirp": "^0.5.1",
"query-string": "^5.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-dropzone": "^4.2.8",
"react-image-crop": "^3.0.10",
"sharp": "^0.19.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-import": "^1.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"change-case": "^3.0.2",
"del": "^3.0.0",
"electron": "^1.4.3",
"electron-builder": "^20.2.0",
"electron-rebuild": "^1.7.3",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4"
},
"build": {
"asar": true,
"appId": "com.karmadust.manscupianconverter",
"asarUnpack": [
"**/node_modules/sharp/**/*"
],
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"publish": null
}
}