-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.89 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
{
"name": "cryptocap",
"version": "1.2.4",
"description": "A taskbar application for tracking your cryptocurrencies. Built using electron, react, and webpack.",
"main": "main.js",
"productName": "CryptoCap",
"scripts": {
"start": "electron .",
"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-win": "webpack --config webpack.build.config.js",
"package-mac": "webpack --config webpack.build.config.js",
"package-mas": "webpack --config webpack.build.config.js",
"postpackage-win": "electron-packager ./ CryptoCap --out=./builds/output --asar --app-version=1.2.4 --overwrite --platform=win32 --arch=all --icon=assets/icons/win/cryptocap.png.ico --prune=true --version-string.FileDescription='CryptoCap' --app-bundle-id=cryptocap",
"postpackage-mac": "electron-packager ./ CryptoCap --out=./builds/output --asar --app-version=1.2.4 --overwrite --platform=darwin --arch=x64 --icon=assets/MyIcon.icns --prune=true --version-string.FileDescription='CryptoCap' --app-bundle-id=cryptocap --app-category-type=public.app-category.finance",
"postpackage-mas": "electron-packager ./ CryptoCap --out=./builds/output --asar --app-version=1.2.4 --overwrite --platform=mas --arch=x64 --icon=assets/MyIcon.icns --prune=true --version-string.FileDescription='CryptoCap' --app-bundle-id=com.curtisrodgers.cryptocap --helper-bundle-id=com.curtisrodgers.cryptocap.helper --app-category-type=public.app-category.finance --app-copyright='Copyright © 2019 Curtis Rodgers'",
"sign-mas-dev": "electron-osx-sign ./builds/output/CryptoCap-mas-x64/CryptoCap.app --verbose --type=development --entitlements=./builds/entitlements/mas.entitlements --entitlements-inherit=./builds/entitlements/mas.inherit.entitlements",
"sign-mas": "electron-osx-sign ./builds/output/CryptoCap-mas-x64/CryptoCap.app --verbose --entitlements=./builds/entitlements/mas.entitlements --entitlements-inherit=./builds/entitlements/mas.inherit.entitlements",
"release-win32": "node ./win/installer-win-x86.js",
"release-win": "node ./win/installer-win-x64.js",
"release-mac": "electron-installer-dmg ./builds/output/CryptoCap-darwin-x64/CryptoCap.app CryptoCap --out=./builds/releases --icon=assets/MyIcon.icns --overwrite",
"remove-langs": "node backups/removeExtraLangs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C-Rodg/CryptoCap.git"
},
"keywords": [
"crypto",
"blockchain",
"taskbar",
"electron",
"react",
"webpack"
],
"author": "C-Rodg",
"license": "MIT",
"bugs": {
"url": "https://github.com/C-Rodg/CryptoCap/issues"
},
"homepage": "https://github.com/C-Rodg/CryptoCap#readme",
"dependencies": {
"menubar": "^5.2.3",
"axios": "^0.18.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.7",
"electron": "^4.1.0",
"electron-installer-dmg": "^2.0.0",
"electron-osx-sign": "^0.4.11",
"electron-packager": "^13.1.0",
"electron-winstaller": "^2.6.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"immutability-helper": "^2.6.4",
"react": "^16.1.1",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.1.1",
"react-input-range": "^1.2.2",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-select": "^1.2.1",
"recharts": "^1.0.0-beta.10",
"style-ext-html-webpack-plugin": "^3.4.7",
"style-loader": "^0.19.0",
"styled-components": "^2.2.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}