-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.04 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
{
"name": "cardano-node-ui",
"homepage": "./",
"description": "This project aims to provide a streamlined, single-click ui solution for launching a Cardano node",
"version": "0.1.6",
"author": "Fabian Bormann <contact@coineda.io>",
"license": "Apache-2.0",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.117",
"@mui/material": "^5.11.5",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"axios": "^1.2.6",
"concurrently": "^7.0.0",
"electron-is-dev": "^2.0.0",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-localstorage-cache": "^1.1.1",
"ip": "^1.1.8",
"nodejs-file-downloader": "^4.10.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"react-router-dom": "^6.8.0",
"react-scripts": "^5.0.1",
"react-string-replace": "^1.1.0",
"recharts": "^2.3.2",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"wait-on": "^7.0.1",
"web-vitals": "^3.1.1",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4"
},
"main": "public/electron.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"dev": "concurrently \"BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "start-server-and-test dev localhost:3000 cypress:run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cypress": "^12.9.0",
"electron": "^22.1.0",
"electron-builder": "^23.6.0",
"start-server-and-test": "^2.0.0"
},
"build": {
"productName": "Cardano Node Ui",
"appId": "org.ui.node.cardano.app",
"mac": {
"icon": "./build/icons/512x512.png",
"category": "public.app-category.utilities"
},
"win": {
"icon": "./build/icons/256x256.png"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb"
]
},
"publish": {
"provider": "github",
"releaseType": "release"
}
}
}