-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
112 lines (112 loc) · 2.61 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
{
"name": "node-explorer",
"description": "The node explorer provides views into a node’s vault and transaction data using Corda’s RPC framework.",
"displayName": "Node Explorer",
"publisher": "R3",
"author": "R3 <[email protected]>",
"version": "0.1.2",
"license": "Apache-2.0",
"main": "public/electron.js",
"electron-dev": "ELECTRON_START_URL=http://localhost:3000 electron .",
"homepage": "./",
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.19.1",
"axios-retry": "^3.1.2",
"i": "^0.3.7",
"logger": "0.0.1",
"mathjs": "^6.2.5",
"npm": "^8.1.0",
"r3-tooling-design-system": "file:r3-tooling-design-system/r3-tooling-design-system-dev",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-redux-toastr": "^7.6.4",
"react-scripts": "^4.0.3",
"recharts": "^2.1.4",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"tree-kill": "^1.2.2",
"yarn": "^1.22.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder"
},
"build": {
"appId": "net.corda.tools.electron.node.explorer",
"productName": "Corda Node Explorer",
"extraFiles": [
"explorer-server-0.1.0.jar"
],
"dmg": {
"background": "background.png",
"icon": "icon.icns",
"iconSize": 100,
"window": {
"width": 520,
"height": 360
},
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "nsis",
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"createStartMenuShortcut": true
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility"
}
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^15.3.0",
"electron-builder": "21.2.0"
}
}