-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.65 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
{
"name": "bolero.fun",
"version": "0.3.5",
"description": "Deviota Bolero",
"repository": {
"type": "git",
"url": "https://github.com/SemkoDev/bolero.fun.git"
},
"keywords": [
"blockchain",
"IOTA",
"tangle",
"p2p"
],
"homepage": "https://semkodev.com",
"author": "Roman Semko <[email protected]> (http://twitter.com/RomanSemko)",
"license": "ISC",
"main": "main.js",
"scripts": {
"prod": "webpack --config webpack.build.config.js && electron --noDevServer .",
"watch": "npm-watch prodev",
"prodev": "webpack --config webpack.dev.config.js",
"electron": "electron .",
"dev": "webpack-dev-server --hot --host 0.0.0.0 --port 8088 --config=./webpack.dev.config.js",
"clean": "rimraf dist/ && rimraf builds/",
"make": "npm run clean && npm run build && npm run package",
"build": "webpack --config webpack.build.config.js",
"package": "webpack --config webpack.build.config.js",
"postpackage": "npm run package-mac && npm run package-linux && npm run package-win",
"package-mac": "electron-packager ./ --overwrite --platform=darwin --arch=x64 --icon=src/assets/img/icon.icns --prune=true --out=builds",
"package-win": "electron-packager ./ --overwrite --asar=true --platform=win32 --arch=ia32 --icon=src/assets/img/icon.ico --prune=true --out=builds --version-string.CompanyName=SemkoDev --version-string.FileDescription=CE --version-string.ProductName=\"Deviota Bolero\"",
"package-linux": "electron-packager ./ --overwrite --asar=true --platform=linux --arch=x64 --icon=src/assets/img/icon-128x128.png --prune=true --out=builds"
},
"watch": {
"prodev": {
"patterns": [
"src"
],
"extensions": "js,jsx,css"
}
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.1",
"electron": "^1.8.3",
"electron-packager": "^9.1.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.28.0",
"npm-watch": "^0.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"body-parser": "^1.18.2",
"bolero.lib": "^0.3.3",
"colors": "^1.1.2",
"copy-to-clipboard": "^3.0.8",
"electron-notify": "^0.1.0",
"express": "^4.16.2",
"iota.lib.js": "^0.4.7",
"nat-upnp": "^1.1.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.77.1"
}
}