forked from currency-cop/currency-cop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.14 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
{
"name": "currency-cop",
"version": "2.0.0-beta.15",
"description": "Calculate Net Worth in Path of Exile",
"author": "Nijiko Yonskai",
"license": "MIT",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/currency-cop/currency-cop.git"
},
"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",
"builder": "electron-builder --publish=never",
"package:all": "cross-env NODE_ENV=production npm-run-all package:windows package:mac package:linux",
"package:windows": "cross-env NODE_ENV=production npm-run-all build && electron-builder --win --x64 --publish=never",
"package:mac": "cross-env NODE_ENV=production npm-run-all build && electron-builder --mac --publish=never",
"package:linux": "cross-env NODE_ENV=production npm-run-all build && electron-builder --linux --x64 --publish=never"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "6.4.1",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babili-webpack-plugin": "0.0.11",
"cross-env": "5.1.4",
"css-loader": "0.28.7",
"electron": "2.0.6",
"electron-builder": "20.26.1",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.30.1",
"npm-run-all": "4.1.2",
"react": "15.6.2",
"react-dom": "15.6.2",
"style-loader": "0.17.0",
"typeface-roboto": "0.0.35",
"webpack": "2.7.0",
"webpack-dev-server": "2.8.2"
},
"dependencies": {
"axios": "0.18.0",
"babel-polyfill": "6.26.0",
"classnames": "2.2.5",
"electron-google-analytics": "^0.1.0",
"js-base64": "2.4.8",
"jsoncomp": "1.6.1",
"material-design-icons": "3.0.1",
"moment": "^2.22.2",
"moment-shortformat": "^2.1.0",
"react-select": "1.1.0",
"slugify": "^1.3.0",
"timsort": "^0.3.0",
"tiny-emitter": "2.0.2"
},
"build": {
"appId": "org.nijiko.made.CurrencyCop",
"productName": "CurrencyCop",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"files": [
"dist/",
"node_modules/",
"main.js",
"package.json"
],
"publish": {
"provider": "github"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icon.icns"
},
"win": {
"icon": "build/icon.ico",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"menuCategory": true,
"license": "LICENSE"
},
"directories": {
"buildResources": "build",
"output": "release"
}
}
}