-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
148 lines (148 loc) · 6.28 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "cybits",
"version": "1.0.13",
"license": "MIT",
"author": {
"name": "Cybits",
"email": "admin@cybits.org",
"url": "https://cybits.org"
},
"description": "The official Cybits Community Cryptocurrency wallet",
"repository": {
"type": "git",
"url": "git+https://github.com/CybitsBlockchain/cybits-wallet.git"
},
"bugs": {
"url": "https://github.com/CybitsBlockchain/cybits-wallet/issues"
},
"homepage": "https://github.com/CybitsBlockchain/cybits-wallet#readme",
"main": "main.js",
"scripts": {
"postinstall": "npm run postinstall:electron && npx electron-builder install-app-deps",
"postinstall:web": "node postinstall-web",
"postinstall:electron": "node postinstall",
"start": "npm run postinstall:electron && npm run electron:tsc && npm-run-all -p ng:lint ng:serve electron:serve",
"ng": "ng",
"build": "npm run postinstall:electron && npm run electron:tsc && ng lint && ng build",
"build:prod": "npm run build -- -c production",
"ng:lint": "ng lint",
"ng:serve": "ng serve",
"ng:serve:web": "npm run postinstall:web && ng serve -o",
"electron:tsc": "tsc main.ts --lib DOM,ES2018",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:tsc && electron . --serve",
"electron:local": "npm run build:testnet && electron .",
"builder": "npm run build:prod && npx electron-builder build",
"build:linux": "npm run builder -- --linux",
"build:linuxsnap": "npm run builder -- --linux snap",
"build:win:x86": "export arch=x86|| set arch=x86&& npm run builder -- --windows --ia32",
"build:win": "export arch=x64|| set arch=x64&& npm run builder -- --windows --x64",
"build:osx": "npm run builder -- --mac",
"build:all": "npm run builder -- -mwl",
"publish": "npm run builder -- -wl -p always",
"publish:osx": "npm run builder -- -m -p always",
"publish:win:x86": "export arch=x86|| set arch=x86&& npm run builder -- -w --ia32 -p always",
"publish:win": "export arch=x64|| set arch=x64&& npm run builder -- -w --x64 -p always",
"publish:linux": "npm run builder -- -l -p always",
"publish:linuxsnap": "npm run builder -- -l snap -p always",
"test": "npm run postinstall:web && ng test",
"e2e": "npm run postinstall:web && ng e2e",
"version": "node -p \"require('./package.json').version\"",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"mobile-start": "npm run mobile-build && npm run mobile-browser",
"mobile-setup": "npm install -g cordova && cd mobile && cordova platform add android && cordova platform add ios && cordova platform add browser && cd ..",
"mobile-build": "ng lint && ng build --outputPath=./mobile/www",
"mobile-android": "cd mobile && cordova run android && cd ..",
"mobile-ios": "cd mobile && cordova run ios && cd ..",
"mobile-browser": "cd mobile && cordova run browser && cd .."
},
"private": true,
"dependencies": {
"@blockcore/message": "^1.0.0",
"@fontsource/roboto": "^4.2.1",
"@techiediaries/ngx-qrcode": "^9.1.0",
"base64url": "^3.0.1",
"bigi": "^1.2.0",
"bitcoinjs-message": "^2.1.1",
"browserify-aes": "^1.0.1",
"bs58": "^4.0.1",
"bs58check": "<3.0.0",
"buffer-xor": "^1.0.2",
"conventional-changelog-cli": "^2.1.1",
"create-hash": "^1.1.1",
"ecurve": "^1.0.0",
"electron-context-menu": "^2.4.0",
"electron-log": "^4.3.1",
"electron-updater": "^4.3.5",
"extract-zip": "^2.0.1",
"lodash": "^4.17.21",
"material-icons": "^0.5.4",
"ngx-image-cropper": "^3.2.1",
"ngx-material-file-input": "^2.1.1",
"read-chunk": "3.2.0",
"safe-buffer": "~5.1.1",
"scryptsy": "^2.1.0",
"tslib": "^2.0.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^10.0.0",
"@angular-devkit/build-angular": "~0.1102.2",
"@angular-eslint/builder": "1.2.0",
"@angular-eslint/eslint-plugin": "1.2.0",
"@angular-eslint/eslint-plugin-template": "1.2.0",
"@angular-eslint/schematics": "1.2.0",
"@angular-eslint/template-parser": "1.2.0",
"@angular/animations": "11.0.9",
"@angular/cdk": "11.0.4",
"@angular/cli": "11.0.7",
"@angular/common": "11.0.9",
"@angular/compiler": "11.0.9",
"@angular/compiler-cli": "11.0.9",
"@angular/core": "11.0.9",
"@angular/flex-layout": "10.0.0-beta.32",
"@angular/forms": "11.0.9",
"@angular/language-service": "11.0.9",
"@angular/material": "11.0.4",
"@angular/platform-browser": "11.0.9",
"@angular/platform-browser-dynamic": "11.0.9",
"@angular/router": "11.0.9",
"@aspnet/signalr": "1.1.4",
"@electron/typescript-definitions": "^8.7.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.8",
"@types/node": "^15.14.1",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"bip39": "3.0.2",
"city-coininfo": "5.0.0",
"city-lib": "5.0.0",
"core-js": "3.6.5",
"dexie": "3.0.2",
"electron": "^13.0.0",
"electron-builder": "^22.14.7",
"electron-reload": "1.5.0",
"enhanced-resolve": "4.3.0",
"eslint": "^7.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"hammerjs": "2.0.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ngx-electron": "2.2.0",
"npm-run-all": "4.1.5",
"npx": "10.2.2",
"protractor": "~7.0.0",
"replace": "1.2.0",
"rxjs": "6.6.3",
"ts-node": "8.10.2",
"typescript": "4.0.5",
"wait-on": "5.1.0",
"zone.js": "~0.10.3"
}
}