forked from buildog/BarterDEX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4.78 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "barterDEX",
"author": "buildog",
"version": "0.0.1",
"description": "barterDEX Electron App",
"main": "main.js",
"scripts": {
"patch": "node patch.js",
"fixperms": "chmod +x ./node_modules/marketmaker/bin/linux/x64/marketmaker && chmod +x ./node_modules/marketmaker/bin/darwin/x64/marketmaker && chmod +x ./node_modules/marketmaker/bin/win32/x64/marketmaker.exe",
"lint": "eslint app test *.js",
"dist-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config ./config/webpack.config.electron.js --progress --profile --colors",
"dist-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config ./config/webpack.config.prod.js --progress --profile --colors",
"dist": "npm run patch && npm run dist-main && npm run dist-renderer",
"start": "npm run dist && cross-env NODE_ENV=production electron ./main",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r babel-register -r babel-polyfill ./main.dev",
"hot-server": "node -r babel-register server.js",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
"release": "npm run dist && npm run package-all",
"package-all": "npm run dist && build -mwl",
"package-mac": "build -m",
"package-win": "build -w",
"package-linux": "build -l"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"license": "GNU",
"devDependencies": {
"asar": "^0.12.3",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-typecheck": "^3.9.0",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"classnames": "^2.2.5",
"concurrently": "^2.2.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^2.0.1",
"css-loader": "^0.24.0",
"del": "^2.2.2",
"devtron": "^1.3.0",
"electron": "1.7.9",
"electron-builder": "^19.19.1",
"electron-debug": "^1.0.1",
"electron-devtools-installer": "^2.0.1",
"electron-packager": "^9.1.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.7",
"node-libs-browser": "^1.0.0",
"postcss": "^5.1.2",
"postcss-cssnext": "^3.0.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.0.2",
"postcss-reporter": "^4.0.0",
"postcss-simple-vars": "^4.0.0",
"react-addons-test-utils": "^15.3.1",
"spectron": "^3.3.0",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^0.5.9",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^0.14.1"
},
"build": {
"extraResources": "../dist",
"appId": "org.barterdex.desktop",
"directories": {
"output": "release"
},
"asarUnpack": [
"**/app/node_modules/marketmaker/*"
],
"win": {
"target": [
"nsis"
],
"icon": "resources/windows/icon.ico"
},
"nsis": {
"oneClick": true,
"installerHeaderIcon": "resources/windows/setup-icon.ico"
},
"mac": {
"icon": "resources/osx/icon.icns",
"category": "your.app.category.type"
},
"dmg": {
"icon": "resources/icons/icon.png"
}
},
"dependencies": {
"cross-spawn": "^5.1.0",
"cryptocoins-icons": "^2.6.0",
"electron-log": "^2.2.7",
"fix-path": "^2.1.0",
"format-currency": "^1.0.0",
"fs-extra": "^4.0.2",
"marketmaker": "https://github.com/buildog/marketmaker.git",
"mobx": "^2.4.4",
"mobx-react": "^3.5.5",
"mobx-react-devtools": "^4.2.5",
"moment": "^2.18.1",
"portscanner": "^2.1.1",
"qrcode.react": "^0.7.2",
"react": "^15.4.1",
"react-cryptocoins": "^1.0.2",
"react-dom": "^15.3.1",
"react-input-autosize": "^2.0.1",
"react-router": "^2.7.0",
"react-table": "^6.5.3",
"react-toggle": "^4.0.2",
"recharts": "^1.0.0-apha.5",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"shelljs": "^0.7.8",
"socket.io-client": "^2.0.3",
"source-map-support": "^0.4.2"
}
}