forked from Qortal/qortal-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.6 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
{
"name": "qortal-ui",
"version": "1.9.2",
"description": "Qortal Project - decentralize the world - Data storage, communications, web hosting, decentralized trading, complete infrastructure for the future blockchain-based Internet",
"keywords": [
"QORT",
"QORTAL",
"DECENTRALIZED"
],
"main": "electron.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Qortal/qortal-ui.git"
},
"homepage": "https://qortal.org",
"author": "QORTAL <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"dev": "node server.js",
"prebuild": "node -p \"'export const UI_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > qortal-ui-core/src/redux/app/version.js",
"build-dev": "node build.js",
"build": "NODE_ENV=production node build.js",
"server": "NODE_ENV=production node server.js",
"watch": "node watch.js",
"watch-inline": "node watch-inline.js",
"start-electron": "NODE_ENV=production electron .",
"build-electron": "electron-builder build --publish never",
"deploy-electron": "electron-builder build --win --publish never",
"release": "NODE_ENV=production electron-builder build --publish never",
"update-package-json": "node update-package-json.js",
"publish": "electron-builder -p always"
},
"dependencies": {
"electron-updater": "4.6.5",
"electron-log": "4.4.6"
},
"devDependencies": {
"electron": "17.1.2",
"electron-builder": "22.14.13",
"electron-notarize": "1.2.1",
"electron-packager": "15.4.0",
"shelljs": "0.8.5"
},
"engines": {
"node": ">=14.17.0"
}
}