-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
78 lines (78 loc) · 2.29 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
{
"private": true,
"name": "@arweave/miner-ui",
"license": "MIT",
"description": "Monitoring and management UI for Arweave miners",
"version": "1.0.0-alpha",
"author": "ArweaveTeam <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:headless": "cross-env AR_MINER_UI_HEADLESS=true npx next build renderer",
"postinstall": "cross-env electron-builder install-app-deps && patch-package",
"check": "npm run check:lint && npm run check:types",
"check:lint": "npx eslint .",
"check:types": "npx tsc --noEmit",
"format:renderer": "prettier --write \"renderer/**/*.{js,jsx,ts,tsx,css}\"",
"format:main": "prettier --write \"main/**/*.{js,ts}\"",
"prepare": "husky install",
"serve:headless": "cross-env AR_MINER_UI_HEADLESS=true npx http-server ./renderer/dist-headless -p 3000"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"renderer/*.{js,jsx,ts,tsx,css}": [
"npm run format:renderer",
"git add"
],
"main/*.{js,ts}": [
"npm run format:main",
"git add"
]
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"ajv": "^8.12.0",
"arweave": "^1.14.4",
"electron-serve": "^1.2.0",
"electron-store": "^8.1.0",
"filesize": "^10.1.0",
"is-electron": "^2.2.2",
"next-redux-wrapper": "^8.1.0",
"parse-prometheus-text-format": "^1.1.1",
"patch-package": "^8.0.0",
"ramda": "^0.29.1",
"react-redux": "^9.1.0",
"react-ui-scrollspy": "^2.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/ramda": "^0.29.9",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"next": "^14.0.4",
"nextron": "^8.12.0",
"postcss": "^8.4.33",
"prettier": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}