-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.29 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
{
"name": "sails",
"version": "0.1.0",
"private": true,
"main": "electron.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@rescripts/cli": "0.0.10",
"@rescripts/rescript-env": "0.0.10",
"bitcoinjs-lib": "^5.1.6",
"bootstrap": "^4.3.1",
"filepond": "^4.4.10",
"find-free-port": "^2.0.0",
"formik": "^1.5.8",
"i18next": "^17.0.4",
"node-pre-gyp": "^0.13.0",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.8.6",
"react-filepond": "^7.0.1",
"react-i18next": "^10.11.2",
"react-input-files": "^1.2.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"typescript": "^3.5.2",
"yup": "^0.27.0"
},
"author": {
"name": "Safex Developers",
"url": "https://safex.io",
"email": "[email protected]"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "NODE_ENV=development electron .",
"electron-dev-browser": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && NODE_ENV=development electron .\"",
"electron-only": "electron .",
"make-mac-installer": "npm run build && electron-builder build -m",
"make-win-installer": "npm run build && electron-builder build -w --x64 --ia32",
"make-linux-installer": "npm run build && electron-builder build -l",
"make-all-installers": "npm run build && electron-builder build -ml && electron-builder build -w --x64 --ia32"
},
"homepage": "./",
"build": {
"appId": "com.electron.sails",
"extends": null,
"files": [
"**/*",
"build/*.*",
"build/css/*.*",
"build/fonts/*.*",
"build/images/*.*",
"build/images/migration/*.*",
"build/static/css/*.*",
"build/static/js/*.*",
"build/static/img/*.*",
"bin/json_rpc"
],
"mac": {
"category": "public.app-category.business",
"icon": "public/images/icons/wallet-icon2.icns",
"type": "distribution",
"target": [
"dmg"
]
},
"win": {
"target": "nsis",
"icon": "public/images/icons/wallet-icon2.ico",
"certificateFile": "",
"certificatePassword": ""
},
"linux": {
"target": [
"deb"
],
"category": "Utility",
"icon": "public/images/icons/"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^4.1.0",
"debug": "^4.1.1",
"electron": "^5.0.1",
"electron-builder": "^20.40.2",
"electron-context-menu": "^0.12.1",
"electron-packager": "^13.1.1",
"morgan": "^1.9.1",
"tslint": "^5.17.0",
"wait-on": "^3.2.0"
},
"binary": {
"module_name": "json_rpc",
"module_path": "./bin",
"remote_path": "{version}",
"host": "https://github.com/StefanIsidorovic/gosafex/"
}
}