-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.1 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
{
"name": "MemGUI",
"description": "GUI for managing Memcached",
"private": false,
"version": "1.0.0",
"author": {
"name": "Santos Código",
"email": "lucassm02@gmail.com"
},
"main": "src/electron/main.cjs",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"clean": "rimraf dist && rimraf release",
"dev": "concurrently \"yarn dev:server\" \"wait-on http://localhost:5173 && yarn electron\"",
"dev:server": "yarn tsx src/server.ts --start --dev --port 5173",
"electron": "electron .",
"build:server": "node script/build-server.cjs",
"build:ui": "vite build",
"build:all": "yarn clean && yarn build:ui && yarn build:server && electron-builder"
},
"build": {
"asar": true,
"extraFiles": [
{
"from": "dist/",
"to": "resources/"
}
],
"appId": "com.memgui.app",
"productName": "MemGUI",
"directories": {
"output": "release",
"buildResources": "asset"
},
"files": [
"dist/**/*",
"src/electron/main.cjs",
"package.json"
],
"win": {
"icon": "asset/icons/icon.ico"
},
"linux": {
"icon": "asset/icons/icon.png",
"target": [
"AppImage",
"deb",
"snap"
]
}
},
"dependencies": {
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-xml": "^6.1.0",
"@heroicons/react": "^2.2.0",
"@seald-io/nedb": "^4.0.4",
"@tailwindcss/vite": "^4.0.1",
"@uiw/react-codemirror": "^4.23.7",
"axios": "^1.7.9",
"cors": "^2.8.5",
"express": "^4.21.2",
"memjs": "^1.3.2",
"p-limit": "3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.5",
"tsconfig-paths": "^4.2.0",
"uuid": "^11.0.5",
"yargs": "17",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/memjs": "^1.3.3",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"electron": "^34.1.1",
"electron-builder": "^25.1.8",
"electron-is-dev": "^3.0.1",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"prettier": "^3.4.2",
"rimraf": "^5.0.0",
"tailwindcss": "^4.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.0.5",
"wait-on": "^8.0.2"
}
}