forked from noia-network/noia-node-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
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
{
"name": "noia-node-gui",
"version": "0.3.13",
"description": "Node GUI",
"homepage": "http://noia.network",
"main": "main.js",
"author": {
"name": "NOIA Network Limited",
"email": "[email protected]"
},
"license": "LGPL-2.1",
"scripts": {
"postinstall": "npx electron-builder install-app-deps",
"start": "node hooks/environments/set_profile.js && npm-run-all -p ng:serve electron:serve",
"build": "node hooks/environments/set_profile.js && ng build && npm run electron:build",
"build:prod": "node hooks/environments/set_profile.js && ng build --prod && npm run electron:build",
"ng:serve": "ng serve -o",
"electron:build": "rollup -c ./electron/rollup.config.js",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:build && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && npx electron-builder build --linux",
"electron:windows": "npm run build:prod && npx electron-builder build --windows nsis --ia32 --x64",
"electron:mac": "npm run build:prod && npx electron-builder build --mac"
},
"dependencies": {
"@angular/animations": "^5.2.9",
"date-fns": "^1.29.0",
"ngx-toastr": "^8.3.0",
"@noia-network/node": "0.2.6",
"randombytes": "^2.0.6",
"request": "^2.85.0",
"typeface-roboto": "0.0.54",
"typeface-roboto-mono": "0.0.54"
},
"devDependencies": {
"@angular/cli": "1.7.1",
"@angular/common": "5.2.5",
"@angular/compiler": "5.2.5",
"@angular/compiler-cli": "5.2.5",
"@angular/core": "5.2.5",
"@angular/forms": "5.2.5",
"@angular/http": "5.2.5",
"@angular/language-service": "5.2.5",
"@angular/platform-browser": "5.2.5",
"@angular/platform-browser-dynamic": "5.2.5",
"@angular/router": "5.2.5",
"@ngx-translate/core": "9.1.1",
"@ngx-translate/http-loader": "2.0.1",
"@types/core-js": "0.9.36",
"@types/node": "7.0.7",
"codelyzer": "4.0.1",
"copyfiles": "1.2.0",
"core-js": "2.4.1",
"cross-env": "5.0.5",
"dotenv": "5.0.0",
"electron": "1.8.3",
"electron-builder": "20.0.5",
"electron-rebuild": "^1.7.3",
"electron-reload": "1.2.2",
"enhanced-resolve": "3.3.0",
"fs-extra": "5.0.0",
"npm-run-all": "4.1.2",
"npx": "9.7.1",
"replace": "0.3.0",
"rollup": "^0.61.2",
"rollup-plugin-auto-external": "^1.2.0",
"rollup-plugin-typescript2": "^0.15.0",
"rxjs": "5.5.6",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typescript": "2.6.2",
"wait-on": "^2.1.0",
"webdriver-manager": "12.0.6",
"zone.js": "0.8.19"
}
}