-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
93 lines (93 loc) · 3.26 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
{
"name": "noia-node-gui",
"version": "1.2.4",
"private": true,
"main": "main.js",
"scripts": {
"postinstall": "cross-env DEBUG=electron-builder npx electron-builder install-app-deps",
"test": "tsc -p . --noEmit && tslint -p .",
"build": "npm run build:main && npm run build:renderer",
"watch": "npm-run-all -p watch:main watch:renderer",
"start": "electron . main.js --serve",
"build:main": "tsc -p tsconfig.main.json",
"build:renderer": "webpack --config webpack.config.js",
"watch:main": "tsc -p tsconfig.main.json -w",
"watch:renderer": "webpack-dev-server",
"nodemon": "nodemon",
"pack:windows": "cross-env DEBUG=electron-builder electron-builder build --windows nsis --ia32 --x64 --publish=never",
"pack:linux": "cross-env DEBUG=electron-builder electron-builder electron-builder build --linux --publish=never",
"pack:mac": "cross-env DEBUG=electron-builder electron-builder build --mac --publish=never"
},
"devDependencies": {
"@simplrjs/webpack": "0.1.0-alpha.11",
"@types/react-notification-system": "0.2.38",
"@types/webpack": "4.4.11",
"electron": "2.0.8",
"electron-builder": "20.38.0",
"electron-react-devtools": "0.5.3",
"nodemon": "1.18.3",
"npm-run-all": "4.1.3",
"simplr-tslint": "1.0.0-alpha.14",
"tslint": "5.11.0",
"tslint-language-service": "0.9.9",
"typescript": "3.1.3",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.6"
},
"dependencies": {
"@noia-network/node": "^1.2.4",
"@noia-network/node-settings": "^1.0.2",
"@types/bytes": "3.0.0",
"@types/classnames": "2.2.6",
"@types/dotenv": "4.0.3",
"@types/electron-is-dev": "0.3.0",
"@types/flux": "3.1.8",
"@types/fs-extra": "5.0.4",
"@types/is-url": "1.2.28",
"@types/lodash.debounce": "4.0.4",
"@types/public-ip": "2.3.0",
"@types/react": "16.4.13",
"@types/react-dom": "16.0.7",
"@types/react-router-dom": "4.3.0",
"bytes": "3.0.0",
"chalk": "2.4.1",
"classnames": "2.2.6",
"cross-env": "5.2.0",
"diskusage": "0.2.6",
"diskusage-ng": "0.2.3",
"dotenv": "6.0.0",
"electron-is-dev": "0.3.0",
"electron-updater": "4.0.0",
"flux": "3.1.3",
"fs-extra": "7.0.0",
"immutable": "3.8.2",
"is-url": "1.2.4",
"lodash.debounce": "4.0.8",
"public-ip": "2.4.0",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-notification-system": "0.2.17",
"react-router-dom": "4.3.1",
"simplr-flux": "3.0.0-alpha",
"strict-event-emitter-types": "2.0.0",
"tslib": "1.9.3",
"typeface-roboto": "0.0.54",
"typeface-roboto-mono": "0.0.54"
},
"description": "NOIA Node Gui",
"keywords": [
"NOIA",
"node",
"gui"
],
"author": {
"name": "NOIA Network Limited",
"email": "[email protected]"
},
"license": "LGPL-2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/noia-network/noia-node-gui.git"
}
}