-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.59 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
{
"name": "core-registry-ui",
"version": "1.0.0",
"scripts": {
"electron": "electron .",
"electron-start": "node src/start-react",
"react-start": "vite --port 3000",
"react-start-browser": "vite --port 3001 --open",
"sync-ui-apps": "rm -rf public/apps && node sync-apps.js",
"build": "rm -rf dist && rm -rf build && npm run sync-ui-apps && vite build && cp -r public/apps/* build/apps",
"build-with-dev-child-apps": "rm -rf dist && rm -rf build && vite build && cp -r public/apps/* build/apps",
"serve": "vite preview",
"test": "vitest",
"electron:package:mac": "npm run build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"electron:package:win": "npm run build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"electron:package:linux": "npm run build && electron-builder -l -c.extraMetadata.main=build/electron.js"
},
"build": {
"appId": "org.chia.core-registry-ui",
"productName": "CoreRegistryUI",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": {
"target": "dmg",
"arch": [
"universal"
]
},
"publish": null,
"icon": "src/assets/img/logo.png"
},
"win": {
"target": "nsis",
"publish": null,
"icon": "src/assets/img/logo.png"
},
"linux": {
"target": "deb",
"publish": null,
"icon": "src/assets/img/logo.png"
}
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"about-window": "^1.15.2",
"autoprefixer": "^10.4.20",
"express": "^4.21.1",
"flowbite": "^1.8.1",
"flowbite-react": "^0.5.0",
"flowbite-typography": "^1.0.4",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.13",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.3.1",
"@vitejs/plugin-react": "^4.3.3",
"electron": "^25.9.8",
"electron-builder": "^24.13.3",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"prettier-eslint": "^16.3.0",
"fs-extra": "^11.2.0",
"jsdom": "^22.1.0",
"prettier": "^3.3.3",
"vite": "^4.5.5",
"vitest": "^0.33.0"
},
"description": "Core Registry Unified User Interface",
"main": "src/start.js",
"author": "Chia Network Inc. <[email protected]>",
"license": "Apache-2.0"
}