-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
213 lines (213 loc) · 8.29 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
{
"name": "symbol-desktop-wallet",
"description": "Symbol Wallet",
"homepage": "https://github.com/symbol/desktop-wallet",
"version": "1.0.13",
"repository": {
"type": "git",
"url": "https://github.com/symbol/desktop-wallet.git"
},
"license": "Apache-2.0",
"scripts": {
"start": "npm run node-hid:prebuild-install && electron .",
"test": "TZ=UTC vue-cli-service test:unit --testTimeout=30000",
"test:jenkins": "TZ=UTC vue-cli-service test:unit --coverage --testTimeout=30000",
"test:debug": "node --inspect-brk node_modules/.bin/vue-cli-service test:unit --watch --runInBand --testTimeout=600000",
"dev": "vue-cli-service serve ",
"build": "npm run build:web",
"build:web": "rimraf dist && mkdir dist && tsc && vue-cli-service build",
"release": "npm run build && npm run release:all",
"release:all": "npm run release:win && npm run release:lin && npm run release:mac && npm run release:zip",
"release:mac": "npm run node-hid:prebuild-install:mac && electron-builder --mac",
"release:win": "npm run node-hid:prebuild-install:win && electron-builder --win",
"release:lin": "npm run node-hid:prebuild-install:lin && electron-builder --linux deb snap tar.xz",
"release:zip": "npm-build-zip --source=dist --destination=release --name=all",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"eslint": "eslint src/ --ext .ts && eslint src/ --ext .vue && eslint __tests__/ --ext .ts && eslint __mocks__/ --ext .ts",
"eslint:fix": "eslint src/ --ext .ts --fix && eslint src/ --ext .vue --fix && eslint __tests__/ --ext .ts --fix && eslint __mocks__/ --ext .ts --fix",
"prettier": "prettier --check ./src ./__tests__ ./__mocks__",
"prettier:fix": "prettier --write ./src ./__tests__ ./__mocks__",
"electron-rebuild": "$(npm bin)/electron-rebuild",
"node-hid:prebuild-install": "cd ./node_modules/node-hid && npm run install && cd ../..",
"node-hid:prebuild-install:mac": "export npm_config_platform=darwin && npm run node-hid:prebuild-install",
"node-hid:prebuild-install:win": "export npm_config_platform=win32 && npm run node-hid:prebuild-install",
"node-hid:prebuild-install:lin": "export npm_config_platform=linux && npm run node-hid:prebuild-install",
"version": "echo $npm_package_version"
},
"author": "The Symbol Syndicate <[email protected]>",
"contributors": [
{
"name": "The Symbol Syndicate",
"email": "[email protected]"
}
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/vue-fontawesome": "^2.0.2",
"@ledgerhq/hw-transport-node-hid-noevents": "^5.41.0",
"@ledgerhq/hw-transport-webusb": "^5.41.0",
"@ssthouse/vue-tree-chart": "^0.6.8",
"animate.css": "^3.7.2",
"await-lock": "^2.0.1",
"bip32-path": "^0.4.2",
"call-bind": "^1.0.2",
"decamelize": "^5.0.0",
"electron-context-menu": "^2.4.0",
"electron-localshortcut": "^3.2.1",
"file-saver": "^2.0.2",
"json2csv": "^5.0.1",
"lodash": "^4.17.20",
"request": "^2.88.0",
"rss-parser": "^3.13.0",
"rxjs": "^6.6.7",
"symbol-sdk": "^2.0.4",
"symbol-statistics-service-typescript-fetch-client": "1.1.3",
"trezor-connect": "^7.0.5",
"utf8": "^3.0.0",
"vee-validate": "^3.2.3",
"view-design": "^4.0.0",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-i18n": "^8.11.2",
"vue-infinite-scroll": "^2.0.2",
"vue-moment": "^4.1.0",
"vue-number-animation": "1.0.5",
"vue-pdf": "^4.2.0",
"vue-property-decorator": "^8.1.0",
"vue-qrcode-reader": "^3.0.0",
"vue-router": "^3.1.3",
"vue-rx": "^6.2.0",
"vue-toastification": "^1.7.14",
"vuedraggable": "^2.23.2",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/compat-data": "^7.9.6",
"@babel/core": "^7.7.2",
"@testing-library/user-event": "^10.0.0",
"@testing-library/vue": "^5.8.3",
"@types/file-saver": "^2.0.1",
"@types/jest": "^25.2.3",
"@types/json2csv": "^5.0.1",
"@types/lodash": "^4.14.168",
"@types/node": "^9.6.50",
"@types/request": "^2.47.1",
"@types/vue-moment": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-typescript": "^4.3.0",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^21.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"bufferutil": "^4.0.1",
"cross-env": "^5.1.1",
"electron": "^22.0.0",
"electron-builder": "23.6.0",
"electron-notarize": "1.0.0",
"electron-packager": "17.1.1",
"electron-rebuild": "^2.3.4",
"electron-updater": "4.3.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.1.2",
"flush-promises": "^1.0.2",
"google-fonts-webpack-plugin": "^0.4.4",
"gsap": ">=3.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.2.6",
"jest-websocket-mock": "~2.0.2",
"json-schema": ">=0.4.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"moment-timezone": "^0.5.38",
"msw": "^0.32.0",
"node-notifier": ">=8.0.1",
"node-pre-gyp": "^0.13.0",
"npm-build-zip": "^1.0.2",
"nth-check": ">=2.0.1",
"nyc": "^15.1.0",
"postcss-import": "^12.0.1",
"postcss-pxtorem": "^4.0.1",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"symbol-address-book": "^1.0.1",
"symbol-hd-wallets": "0.14.1-alpha-202103051108",
"symbol-openapi-typescript-fetch-client": "^1.0.0",
"symbol-paper-wallets": "^1.0.2",
"symbol-qr-library": "0.14.1-alpha-202103081047",
"symbol-uri-scheme": "0.6.1",
"tar": ">=6.1.9",
"ts-jest": "^25.3.0",
"ts-mockito": "^2.6.1",
"typescript": "^3.7.2",
"utf-8-validate": "^5.0.2",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
},
"resolutions": {
"@babel/preset-env": "7.5.5"
},
"main": "./public/build.js",
"build": {
"appId": "io.nem.symbol.desktop-wallet",
"extends": null,
"copyright": "Copyright © 2019-2021 NEM",
"productName": "Symbol Wallet",
"artifactName": "${name}-${os}-${arch}-${version}.${ext}",
"icon": "./dist/assets/icons/Icon.icns",
"files": [
"dist/**/*",
"package.json",
"./public/build.js",
"./public/preload.js"
],
"directories": {
"buildResources": "assets",
"output": "release"
},
"npmRebuild": false,
"afterSign": "scripts/notarize.js"
},
"mac": {
"category": "public.app-category.finance",
"target": "dmg",
"icon": "./assets/icons/Icon.incs",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"asarUnpack": [
"**/*.node"
],
"entitlements": "./electron/entitlements.mac.plist",
"extendInfo": {
"NSCameraUsageDescription": "This app requires camera access to scan qrcodes."
}
},
"dmg": {
"window": {
"x": 100,
"y": 100,
"width": 500,
"height": 400
}
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"publisherName": "NEM Group Limited",
"installerIcon": "./assets/icons/Symbol.ico"
},
"linux": {
"category": "Finance",
"icon": "./assets/icons/Icon.incs"
}
}