-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.32 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.32 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
{
"author": {
"email": "development@blackhan.com",
"name": "Blackhan Software Ltd",
"url": "https://github.com/blackhan-software"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@types/qrcode": "^1.5.6",
"concurrently": "^9.2.1",
"html-loader": "^5.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lodash": "^4.17.23",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6"
},
"dependencies": {
"@metamask/detect-provider": "^2.0.0",
"@reduxjs/toolkit": "^2.11.2",
"@safe-global/safe-apps-provider": "^0.18.6",
"@types/bootstrap": "^5.2.10",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/html-minifier": "^4.0.6",
"@types/http-errors": "^2.0.5",
"@types/jest": "^30.0.0",
"@types/jquery": "^4.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^25.3.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-transition-group": "^4.4.12",
"@types/supertest": "^7.2.0",
"@types/throng": "^5.0.7",
"chart.js": "^4.5.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"css-loader": "^7.1.4",
"debug": "^4.4.3",
"dotenv": "^17.3.1",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"ethers": "^6.16.0",
"express": "^5.2.1",
"file-loader": "^6.2.0",
"html-minifier-terser": "^7.2.0",
"html-webpack-plugin": "^5.6.6",
"http-errors": "^2.0.1",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"mini-css-extract-plugin": "^2.10.0",
"mitt": "^3.0.1",
"morgan": "^1.10.1",
"proxy-memoize": "^3.0.1",
"pug": "^3.0.3",
"qrcode": "^1.5.4",
"randombytes": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-transition-group": "^4.4.5",
"rimraf": "^6.1.3",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"threads": "^1.7.0",
"throng": "^5.0.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"usehooks-ts": "^3.1.1",
"wasm-miner": "npm:@blackhan-software/wasm-miner@^1.0.15",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
},
"description": "XPower UI",
"license": "GPL-3.0",
"main": "app.js",
"name": "xpower-ui",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/xpowermine/xpower-ui"
},
"scripts": {
"clean": "rimraf -g './public/{scripts,styles,views}/*'",
"lint": "eslint '**/*.ts' '**/*.tsx'",
"wp-pro": "webpack --mode production",
"wp-dev": "webpack --mode development --devtool source-map --watch",
"ts-app": "ts-node ./bin/www.ts",
"ts-dev": "DEBUG=\"xpower-ui:*\" ts-node-dev ./bin/www.ts",
"prebuild": "npm run lint && tsc && ./prefetch.sh",
"build": "npm run wp-pro",
"predev@mainnet": "npm run lint && tsc && ./prefetch.sh",
"dev@mainnet": "NETWORK=mainnet concurrently npm:wp-dev npm:ts-dev -c bold.blue,bold.grey",
"predev@testnet": "npm run lint && tsc && ./prefetch.sh",
"dev@testnet": "NETWORK=testnet concurrently npm:wp-dev npm:ts-dev -c bold.blue,bold.grey",
"start": "npm run ts-app",
"pretest": "tsc",
"test": "jest --verbose",
"watch": "tsc --watch"
},
"version": "10.1.2"
}