-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.44 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.44 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
{
"name": "liara-desktop",
"version": "2.2.0",
"author": "Liara Cloud <support@liara.ir> (https://liara.ir)",
"homepage": "https://liara.ir",
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0"
},
"browserslist": [
"last 10 versions"
],
"main": "main/main.js",
"description": "The desktop interface for Liara",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"build": "rm -rf dist && cross-env NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./release-builds",
"builder": "rm -rf release && electron-builder build -lwm --x64 --arm64 --publish never",
"deploy": "electron-builder build -lwm --x64 --arm64 --publish always"
},
"dependencies": {
"@liara/cli": "3.4.0",
"@liara/platformicons": "^3.8.1",
"@reduxjs/toolkit": "^1.9.6",
"ansi-up": "^1.0.0",
"app-root-dir": "^1.0.2",
"axios": "^0.24.0",
"byte-size": "^8.1.1",
"bytes": "^3.1.2",
"chalk": "^4.1.2",
"electron-devtools-installer": "^3.1.1",
"electron-updater": "^4.6.1",
"fs-extra": "^10.1.0",
"get-port": "^5.1.1",
"got": "^11.8.6",
"js-yaml": "^4.1.0",
"raven": "^2.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.16.0",
"styled-components": "^6.0.8",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/runtime": "^7.23.0",
"babel-loader": "^9.1.3",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"electron": "^26.2.4",
"electron-builder": "^24.6.4",
"electron-devtools-installer": "^3.1.1",
"electron-packager": "^17.1.2",
"electron-updater": "^6.1.4",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"repository": {
"type": "git",
"url": "https://github.com/liara-cloud/desktop.git"
}
}