-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.32 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
{
"name": "smup",
"version": "0.0.1",
"description": "One Click Bug Bounty Tools Installer",
"author": "Arshad Kazmi",
"homepage": "https://github.com/arshadkazmi42/smup",
"repository": {
"type": "git",
"url": "https://github.com/arshadkazmi42/smup.git"
},
"license": "MIT",
"main": "main.js",
"scripts": {
"prod": "webpack --config webpack.build.config.js && electron --noDevServer .",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
"build": "webpack --config webpack.build.config.js",
"package": "webpack --config webpack.build.config.js",
"postpackage": "webpack --config webpack.build.config.js && electron-packager ./ --out=./builds --overwrite",
"buildlinux": "webpack --config webpack.build.config.js && electron-packager ./ --out=./builds --platform=linux --icon=./src/assets/images/logo.png --arch=x64 --overwrite",
"buildwindows": "webpack --config webpack.build.config.js && electron-packager ./ --out=./builds --platform=win32 --arch=x64 --overwrite",
"buildmac": "webpack --config webpack.build.config.js && electron-packager ./ --out=./builds --platform=darwin --icon=./src/assets/images/logo.icns --arch=x64 --overwrite",
"releaselinux": "electron-installer-debian --src builds/smup-linux-x64/ --dest releases/installers/ --arch amd64",
"releasemac": "electron-installer-dmg builds/smup-darwin-x64 releases/installers/Smup"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@webpack-cli/migrate": "^1.1.2",
"babel-loader": "^8.2.2",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^6.2.0",
"electron": "^13.2.1",
"electron-installer-debian": "^3.1.0",
"electron-installer-dmg": "^3.0.0",
"electron-packager": "^15.3.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.2",
"style-loader": "^3.2.1",
"styled-components": "^5.3.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"command-exec": "^1.0.1",
"lodash": "^4.17.21"
}
}