-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.63 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.63 KB
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
{
"name": "BottosWallet",
"version": "3.0.0",
"publishDate": "2018-6-8",
"private": true,
"main": "main.js",
"homepage": ".",
"DEV": false,
"MOCK": false,
"description": "Bottos Wallet",
"author": {
"name": "bottos"
},
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.config.dev.js --hot",
"build": "webpack --config ./config/webpack.config.prod.js",
"buildwithworker": "webpack --mode production --config ./config/webpack.config.worker.js && webpack --config ./config/webpack.config.prod.js",
"electron-start": "electron .",
"worker": "webpack --mode development --config ./config/webpack.config.worker.js --watch",
"pack-mac": "electron-builder --platform=darwin",
"pack-win": "electron-builder --platform=win",
"pack-linux": "electron-builder --platform=linux",
"pack-all": "electron-builder --platform=all",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"asar": "^0.14.3",
"electron-log": "^2.2.14",
"uuid": "^3.2.1"
},
"build": {
"appId": "bottos.com",
"asar": true,
"mac": {
"category": "Developer Tools",
"target": [
"dmg"
],
"icon": "electron_pack/icon.icns"
},
"win": {
"target": [
"nsis"
],
"icon": "electron_pack/icon.ico"
},
"linux": {
"target": [
"appImage"
]
},
"directories": {
"buildResources": "."
},
"snap": {
"useTemplateApp": false
},
"extends": null
},
"devDependencies": {
"antd": "^3.3.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-import": "^1.6.5",
"babel-preset-react": "^6.24.1",
"bottos-crypto-js": "^1.0.14",
"css-loader": "^0.28.11",
"electron": "^1.8.7",
"electron-builder": "^20.14.7",
"fs-extra": "^5.0.0",
"google-protobuf": "^3.5.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"less-vars-to-js": "^1.2.1",
"lodash": "^4.17.10",
"long": "^4.0.0",
"mini-css-extract-plugin": "^0.4.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-amap": "^1.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.1.3",
"react-intl": "^2.4.0",
"react-redux": "^5.0.7",
"react-router": "^3.2.0",
"react-transition-group": "^2.3.1",
"recharts": "^1.0.0-beta.10",
"redux": "^3.7.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.9.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"theme": {
"primary-color": "red"
}
}