forked from web3ToolBoxDev/toolBoxClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.76 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": "web3toolbox",
"author": "Aming",
"version": "0.1.5",
"private": true,
"main": "electron.js",
"license": "MIT",
"homepage": ".",
"build": {
"appId": "com.example.myapp",
"productName": "web3toolbox",
"extends": null,
"directories": {
"output": "dist"
},
"files": [
"client/build/**/*",
"node_modules/**/*",
"client/public/**/*",
"electron.js",
"preload.js",
"server/**/*",
"resources/**/*",
"package.json",
"config.js"
],
"extraResources": [
{
"from": "./assets",
"to": "./assets"
}
],
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools",
"icon": "client/build/logo_512x512.png"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "client/build/logo_512x512.png"
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"async-mutex": "^0.5.0",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"date-and-time": "^3.1.1",
"ethers": "^6.11.1",
"events": "^3.3.0",
"exceljs": "^4.4.0",
"express": "^4.18.3",
"express-ws": "^5.0.2",
"geo-tz": "^8.0.2",
"http": "^0.0.1-security",
"http-proxy-agent": "^7.0.2",
"ip2location-nodejs": "^9.6.1",
"nedb": "^1.8.0",
"portscanner": "^2.2.0",
"proxy-chain": "^2.4.0",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-bootstrap": "^2.10.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1",
"react-scripts": "^5.0.1",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"socket.io-client": "^4.7.4",
"socks": "^2.8.1",
"socks-proxy-agent": "^8.0.3",
"url": "^0.11.3",
"axios": "^1.6.8",
"web-vitals": "^2.1.0"
},
"scripts": {
"dev": "electron .",
"dist": "electron-builder",
"start": "react-app-rewired start",
"build": "react-app-rewired build --port 30001",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pack": "electron-builder --dir"
},
"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": {
"concurrently": "^8.2.2",
"customize-cra": "^1.0.0",
"dotenv": "^16.4.5",
"electron": "^29.0.1",
"electron-builder": "^24.12.0",
"electron-is-dev": "^3.0.1"
},
"proxy": "http://localhost:30001"
}