forked from oxen-io/lokinet-gui
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.76 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.76 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
{
"name": "lokinet-gui",
"productName": "Lokinet-GUI",
"description": "A Control panel for Lokinet",
"version": "1.0.1",
"license": "GPL-3.0-or-later",
"homepage": "https://lokinet.org",
"author": {
"name": "The Oxen Project",
"email": "team@oxen.io"
},
"main": "./dist/main.js",
"scripts": {
"cleanup": "rimraf -f dist release",
"lint": "eslint . --ext .ts --ext .tsx",
"format": "prettier --config .prettierrc './**/*.tsx' './**/*.ts' 'contrib/electron-builder-*.json' --write",
"format-and-lint": "yarn format && yarn lint",
"compile:electron": "cross-env NODE_ENV=production webpack --config webpack.electron.config.js --mode production",
"compile:react": "cross-env NODE_ENV=production webpack --config webpack.react.config.js --mode production",
"compile": "yarn compile:electron && yarn compile:react",
"pack": "yarn compile && electron-builder --dir --publish=never --config=contrib/electron-builder-release.json",
"postinstall": "yarn patch-package && electron-builder install-app-deps",
"macos": "yarn cleanup && yarn compile && electron-builder --mac --publish=never --config=contrib/electron-builder-release.json",
"macos:raw": "yarn cleanup && yarn compile && electron-builder --mac dir --publish=never --config=contrib/electron-builder-release.json",
"win32": "yarn cleanup && yarn compile && electron-builder --windows portable --publish=never --config=contrib/electron-builder-release.json",
"deb": "yarn cleanup && yarn compile && electron-builder --linux deb --publish=never --config=contrib/electron-builder-release.json",
"appImage": "yarn cleanup && yarn compile && electron-builder --linux appImage --publish=never --config=contrib/electron-builder-release.json",
"dist": "yarn appImage && yarn deb && yarn win32"
},
"config": {
"pubkey": null
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@types/lodash": "^4.14.168",
"@types/react-redux": "^7.1.16",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.22",
"@types/victory": "^33.1.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"babel-loader": "^8.2.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.2",
"electron": "^11.2.3",
"electron-builder": "^23.0.6",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.1.0",
"patch-package": "^6.4.6",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"@chakra-ui/react": "^2.3.4",
"@chakra-ui/styled-system": "^2.3.3",
"@chakra-ui/theme-tools": "2.0.11",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@reduxjs/toolkit": "^1.5.0",
"@types/react": "16.14.0",
"@types/react-dom": "^17.0.1",
"caniuse-lite": "^1.0.30001421",
"electron-store": "^8.1.0",
"focus-visible": "^5.2.0",
"framer-motion": "^7.3.6",
"lodash": "^4.17.20",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.2.0",
"react-is": "^18.2.0",
"react-redux": "^8.0.2",
"react-use": "^17.4.0",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.3",
"victory": "^36.6.7",
"zeromq": "6.0.0-beta.6"
}
}