-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.42 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.42 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "opendex-desktop",
"description": "For market makers who want to have a visual way to control their OpenDEX environment",
"author": "OpenDEX Network",
"build": {
"appId": "com.opendex-desktop",
"productName": "OpenDEX Desktop",
"linux": {
"category": "Finance",
"icon": "public/assets/512x512.png",
"extraResources": [
{
"from": "public/assets/opendex-launcher",
"to": "./opendex-launcher"
}
]
},
"mac": {
"category": "public.app-category.finance",
"icon": "public/assets/512x512.png",
"extraResources": [
{
"from": "public/assets/opendex-launcher-darwin",
"to": "./opendex-launcher-darwin"
}
]
},
"win": {
"icon": "public/assets/512x512.png",
"extraResources": [
{
"from": "public/assets/opendex-launcher.exe",
"to": "./opendex-launcher.exe"
}
]
}
},
"main": "public/electron.js",
"homepage": "./",
"version": "1.0.0-testnet.11",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"cross-env": "^7.0.2",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.2.4",
"mobx": "^5.15.7",
"mobx-react": "^6.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"rxjs": "^6.6.3"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder --publish=always",
"build": "yarn lint && yarn react-build && yarn electron-build --publish never",
"build-all": "yarn lint && yarn react-build && yarn electron-build --publish never -mwl",
"build-wl": "yarn lint && yarn react-build && yarn electron-build --publish never --win --linux",
"start": "concurrently --kill-others \"cross-env BROWSER=none yarn react-start\" \"wait-on https://localhost:3000 && electron .\"",
"test": "prettier --check src/ public/ && yarn react-test",
"lint": "eslint . --ext .js,.ts,.tsx",
"prettier": "prettier --write src/ public/"
},
"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": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.62",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"concurrently": "^5.3.0",
"electron": "^10.1.2",
"electron-builder": "^22.8.1",
"eslint-plugin-jest": "^24.0.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^3.7.5",
"wait-on": "^5.2.0"
},
"engines": {
"node": ">=12.18.0"
}
}