mirrored from https://gitlab.com/Elypia/imagecaster-gui
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.06 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
{
"name": "imagecaster-gui",
"version": "0.3.0",
"description": "Perform bulk actions like resizing/recoloring or setting metadata against images or files.",
"repository": {
"type": "git",
"url": "https://gitlab.com/Elypia/imagecaster-gui"
},
"keywords": [
"imagecaster",
"react",
"node",
"typescript",
"electron",
"image",
"exif",
"gui"
],
"license": "Apache-2.0",
"author": {
"name": "Seth Falco",
"url": "https://elypia.org/",
"email": "seth@elypia.org"
},
"private": false,
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage --watchAll false",
"electron:linux": "yarn run build && electron-builder --linux",
"electron:win": "yarn run build && electron-builder --win"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-brands-svg-icons": "^5.12.1",
"@fortawesome/pro-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-jsonschema-form": "^1.8.1",
"react-markdown": "^4.3.1",
"react-swipeable-views": "^0.13.9",
"rjsf-material-ui": "^0.3.9"
},
"devDependencies": {
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "10.0.0",
"@types/jest": "25.1.2",
"@types/node": "13.7.2",
"@types/react": "16.9.20",
"@types/react-dom": "^16.9.0",
"@types/react-jsonschema-form": "^1.7.0",
"@types/react-swipeable-views": "^0.13.0",
"electron": "^8.0.0",
"electron-builder": "^22.4.0",
"react-scripts": "3.4.0",
"typescript": "~3.7.2"
},
"build": {
"appId": "org.elypia.imagecaster",
"productName": "ImageCaster",
"copyright": "Copyright 2020-2020 Elypia CIC and Contributors",
"artifactName": "imagecaster.${ext}",
"extraFiles": [
"imagecaster/"
],
"linux": {
"synopsis": "Perform bulk actions like resizing/recoloring or setting metadata against images or files.",
"category": "Graphics",
"desktop": {
"Type": "Application",
"Encoding": "UTF-8",
"Name": "ImageCaster",
"Comment": "GUI for ImageCaster",
"Categories": "Graphics",
"Terminal": false
}
},
"win": {
"target": "portable",
"icon": "build/android-chrome-512x512.png"
},
"mac": {
"category": "public.app-category.utilities"
}
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"semi": [
2,
"always"
]
},
"parserOptions": {
"ecmaVersion": 6
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
}
}