-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
{
"name": "decentralized-internet-ui",
"version": "1.0.0",
"description": "Central UI Dashboard for Decentralized Internet SDK",
"main": "main.js",
"author": "Decentralized Internet Team",
"license": "MIT",
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development electron .",
"build": "electron-builder",
"web": "webpack-dev-server --mode development",
"build-web": "webpack --mode production"
},
"dependencies": {
"electron": "^40.0.0",
"express": "^5.2.1",
"socket.io": "^4.6.0",
"socket.io-client": "^4.6.0",
"axios": "^1.6.2",
"ps-node": "^0.1.6",
"node-fetch": "^3.0.0",
"ws": "^8.16.0",
"pm2": "^7.0.0",
"chart.js": "^4.4.1",
"react-chartjs-2": "^5.2.0",
"vis-network": "^10.0.0",
"d3": "^7.8.5"
},
"devDependencies": {
"electron-builder": "^26.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.0.0",
"cross-env": "^10.0.0",
"html-webpack-plugin": "^5.6.0",
"css-loader": "^7.0.0",
"style-loader": "^3.3.3"
},
"build": {
"appId": "org.decentralizedinternet.ui",
"productName": "Decentralized Internet UI",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"public/**/*",
"src/**/*"
],
"win": {
"target": "nsis",
"icon": "public/icon.ico"
},
"linux": {
"target": "AppImage",
"category": "Network"
},
"mac": {
"target": "dmg",
"icon": "public/icon.icns"
}
}
}