-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.38 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.38 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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "genaro-wallet",
"version": "1.0.7",
"description": "Genaro Wallet",
"homepage": "https://genaro.network",
"author": {
"name": "Genaro wallet",
"email": "ziyi@genaro.network"
},
"keywords": [
"angular",
"angular 6",
"electron",
"typescript",
"sass"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "npx electron-builder install-app-deps && node angular-support",
"ng": "ng",
"start": "cross-env NODE_ENV=development npm-run-all -p ng:serve electron:serve",
"build": "npm run electron:tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve --source-map",
"electron:tsc": "tsc main.ts --lib es5,dom,es2017,es2016,es2015",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:tsc && electron . --serve --inspect=5858",
"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",
"electron:mac": "npm run build:prod && npx electron-builder build --mac",
"electron:mac:dev": "npm run build:dev && npx electron-builder build --mac",
"test": "ng test",
"e2e": "ng e2e"
},
"dependencies": {
"better-sqlite3": "^5.0.1",
"bip39": "^2.5.0",
"bitcore-lib": "^0.15.0",
"cryptico": "^1.0.2",
"dnode": "^1.2.2",
"electron-updater": "^3.1.2",
"ethereumjs-wallet": "^0.6.2",
"genaro-web3": "^0.6.8",
"genaroshare-daemon": "^1.4.9",
"hdkey": "^1.1.0",
"human-size": "^1.1.0",
"jdenticon": "^2.1.0",
"jswallet-manager": "^0.5.6",
"libgenaro": "^4.0.3",
"numeral": "^2.0.6",
"pretty-ms": "^4.0.0",
"qrcode": "^1.3.2",
"rxjs": "^6.3.3",
"secp256k1": "^3.5.2",
"storj-lib": "^8.7.2",
"uuid": "^3.3.2",
"web3-utils": "^1.0.0-beta.36"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.8.8",
"@angular/animations": "^6.0.0",
"@angular/cli": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/forms": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/language-service": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/router": "^6.0.0",
"@types/jasmine": "^3.3.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^10.12.10",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"codelyzer": "^4.5.0",
"core-js": "^2.5.7",
"cross-env": "^5.2.0",
"electron": "^3.0.10",
"electron-builder": "^20.31.2",
"electron-reload": "^1.3.0",
"jasmine": "^3.3.0",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-electron": "^6.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-zorro-antd": "^1.8.1",
"node-loader": "^0.6.0",
"npm-run-all": "^4.1.5",
"protractor": "^5.4.1",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"wait-on": "3.2.0",
"webdriver-manager": "^12.1.0",
"zone.js": "^0.8.26"
}
}