This repository has been archived by the owner on May 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.73 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
{
"name": "ZENChat",
"version": "0.0.2a",
"description": "Private and Anonymous Messaging Application, built on top of the Zencash blockchain",
"author": "Kendrick Tan",
"homepage": "https://github.com/ZencashOfficial/zenchat",
"repository": {
"type": "git",
"url": "https://github.com/ZencashOfficial/ZENChat.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": "electron-packager ./ --out=./builds",
"packagedeb": "yarn run package && electron-installer-debian --src ./builds/ZENChat-linux-x64 --dest ./builds/installers/ --arch amd64 --options.name zenchat",
"test": "echo 'need to do this'"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.0",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"babili-webpack-plugin": "^0.0.9",
"bitcoin": "^3.0.1",
"bitcoin-promise": "^1.3.1",
"bluebird": "^3.5.0",
"css-loader": "^0.28.5",
"electron": "^1.6.7",
"electron-packager": "^8.7.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"material-ui": "^0.19.0",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"postcss-loader": "^2.0.6",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-addons-transition-group": "^15.6.0",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^15.6.1",
"react-flexbox-grid": "1.1.3",
"react-redux": "^5.0.6",
"react-scroll": "^1.5.4",
"redux": "^3.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"utf8": "^2.1.2",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"zencashjs": "^1.1.4-a"
},
"build": {
"appId": "io.zensystem.zenchat",
"category": "public.app-category.utilities",
"files": [
"builds/"
],
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"AppImage",
"deb"
]
}
},
"directories": {
"output": "builds"
},
"dependencies": {
"electron-installer-debian": "^0.5.2"
}
}