-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.33 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.33 KB
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
{
"name": "GoThroughFiles",
"productName": "GoThroughFiles - File Searcher Project",
"version": "0.1.0",
"scripts": {
"start": "BROWSER=none nf start -p 3000",
"build": "react-scripts build",
"windows": "electron-packager . GoThroughFiles --overwrite --asar --platform=win32 --arch=ia32 --icon=src/assets/logo/gothroughfiles.ico --prune=true --out=release-gothroughfiles-windows --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName='GoThroughFiles - File Searcher'",
"mac": "electron-packager . GoThroughFiles --overwrite --platform=darwin --arch=x64 --icon=src/assets/logo/gothroughfiles.icns --prune=true --out=release-gothroughfiles-mac",
"linux": "electron-packager . GoThroughFiles --overwrite --asar --platform=linux --arch=x64 --icon=src/assets/logo/gothroughfiles.png --prune=true --out=release-gothroughfiles-linux",
"create-installer-win": "node installers/windows/createinstaller.js",
"create-installer-mac": "electron-installer-dmg ./release-gothroughfiles-mac/GoThroughFiles - File Searcher Project-darwin-x64\\ GoThroughFiles\\ app-darwin-x64/Electron\\ GoThroughFiles\\ GoThroughFiles - File Searcher Project.app contents --out=GoThroughFiles-mac",
"create-debian-installer": "electron-installer-debian --src release-gothroughfiles-linux --arch amd64 --config debian.json",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-start": "node src/electron-wait-react",
"react-start": "react-scripts start",
"pack": "build --dir",
"dist": "npm run build && build"
},
"dependencies": {
"axios": "^0.18.0",
"codepage": "^1.14.0",
"electron-is-dev": "^1.0.1",
"electron-json-storage": "^4.1.4",
"electron-store": "^2.0.0",
"fast-glob": "^2.2.4",
"foreman": "^3.0.1",
"fs": "^0.0.1-security",
"graceful-fs": "^4.1.15",
"mammoth": "^1.4.7",
"pdf2json": "^1.1.7",
"promise-filter": "^1.1.0",
"react": "^16.5.2",
"react-box-shadow": "^1.0.1",
"react-dom": "^16.5.2",
"react-scripts": "1.1.5",
"react-spinners": "^0.4.7",
"react-stack-grid": "^0.7.1",
"react-toggle-switch": "^3.0.4",
"react-typing-animation": "^1.4.0",
"stream": "0.0.2"
},
"author": "Dardan Iljazi, Anel Muminovic, David Niembro",
"license": "MIT",
"devDependencies": {
"electron": "^3.0.2",
"electron-packager": "^13.0.0",
"electron-winstaller": "^2.7.0",
"foreman": "^3.0.1",
"gulp-connect-php": "^1.0.3",
"react-scripts": "1.1.15"
},
"homepage": ".",
"main": "main.js",
"browserslist": [],
"build": {
"appId": "com.GoThroughFiles.app",
"files": [
"node_modules/**/*",
"public/**/*",
"src/**/*",
"main.js",
"function.js"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"directories": {
"buildResources": "public"
},
"mac": {
"icon": "src/assets/logo/gotroughfiles.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "squirrel",
"icon": "src/assets/logo/gotroughfiles.ico"
}
}
}