forked from RedSkiesIO/cryptowallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 5.4 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
{
"name": "cent",
"version": "1.0.39",
"description": "Cent Wallet - By Cent Finance",
"productName": "Cent",
"cordovaId": "com.centfinance.mobile.wallet",
"author": "Cent Finance <developer@cent.finance>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --fix --ext .js,.vue src",
"test:unit": "cross-env NODE_ENV=test TZ=Europe/London jest",
"test:e2e": "cypress open",
"test:unit:qa": "cross-env NODE_ENV=test jest --coverage",
"test:unit:qa:codacy": "cross-env NODE_ENV=test jest --coverage && cat ./coverage/lcov.info | codacy-coverage",
"test:unit:debug": "cross-env NODE_ENV=test jest --debug",
"test:unit:watch": "cross-env NODE_ENV=test jest --watch",
"test:unit:snapshot": "cross-env NODE_ENV=test jest --updateSnapshot",
"server:instanbul": "cross-env NODE_ENV=test http-server ./tests/unit/__coverage__/lcov-report -p4200 -d -i -g -e -o --cors",
"build:ios": "npm version patch && quasar build -m cordova -T ios",
"build:android": "npm version patch && quasar build -m android",
"build:android:sign": "jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore dist/cordova/android/apk/release/app-release-unsigned.apk alias_name",
"build:android:zipalign": "zipalign -v 4 dist/cordova/android/apk/release/app-release-unsigned.apk dist/cordova/android/apk/release/app-release.apk",
"test:e2e:CI": "cypress run"
},
"dependencies": {
"@atlascity/vuex-orm-plugin-lokijs": "^0.0.3",
"@celo/contractkit": "^1.2.4",
"@quasar/cli": "^1.1.3",
"@quasar/extras": "^1.10.2",
"@ramp-network/ramp-instant-sdk": "^1.8.1",
"@toruslabs/torus-direct-web-sdk": "^3.0.3",
"@transak/transak-sdk": "^1.0.28",
"@vuex-orm/core": "^0.27.0",
"@walletconnect/client": "^1.5.4",
"@walletconnect/qrcode-modal": "^1.5.4",
"@walletconnect/web3-provider": "^1.5.4",
"@zxing/library": "^0.17.1",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"bip39": "^2.5.0",
"bnc-notify": "^1.3.1",
"bulma": "^0.7.1",
"chart.js": "^2.7.3",
"comlink": "^4.0.2",
"compare-func": "^2.0.0",
"cordova": "^8.1.2",
"cordova-plugin-navigationbar-color": "^0.1.0",
"core-js": "^2.6.5",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1",
"cryptowallet-js": "../cryptowallet-js",
"eslint-plugin-import-order-autofix": "^0.8.3",
"ethereum-ens": "^0.8.0",
"ethereumjs-wallet": "^1.0.0",
"ethers": "^5.0.9",
"etherscan-api": "^10.0.0",
"localforage": "^1.9.0",
"localforage-cordovasqlitedriver": "^1.8.0",
"magic-sdk": "^2.0.0",
"module": "^1.2.5",
"numeral": "^2.0.6",
"qrcode": "^1.3.2",
"quasar": "^1.15.10",
"snyk": "^1.130.0",
"v-clipboard": "^2.2.3",
"vue": "^2.6.7",
"vue-axios": "^2.1.4",
"vue-chartjs": "^3.4.0",
"vue-form-wizard": "^0.8.4",
"vue-i18n": "8.9.0",
"vue-keyboard": "3.1.0",
"vue-rollbar": "^0.2.4",
"vue-router": "^3.0.1",
"vue-select": "^2.5.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.7",
"vue-text-middle-ellipsis": "^1.0.13",
"vuelidate": "^0.7.4",
"vuetrend": "^0.3.2",
"vuex": "^3.0.1",
"vuex-orm-cordova": "^0.1.0",
"vuex-orm-localforage": "^0.3.2",
"vuex-persist": "^1.7.1",
"vuex-router-sync": "^5.0.0",
"walletconnect": "^1.5.4",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@quasar/app": "^1.9.6",
"@quasar/quasar-app-extension-testing": "^1.0.3",
"@quasar/quasar-app-extension-testing-e2e-cypress": "^1.0.0-beta.13",
"@quasar/quasar-app-extension-testing-unit-jest": "^1.1.0-beta.7",
"@types/cross-spawn": "^6.0.0",
"@types/jest": "^23.3.2",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.25",
"appium": "^1.12.1",
"appium-doctor": "^1.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"devtron": "^1.4.0",
"dotenv": "^6.2.0",
"electron": "^9.4.4",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-packager": "^14.2.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"flush-promises": "^1.0.2",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"jest-serializer-vue": "^2.0.2",
"jest-vue-preprocessor": "^1.4.0",
"lint-staged": "^7.2.0",
"node-sass": "^4.14.1",
"quasar-cli": "^0.17.23",
"sass-loader": "^7.0.1",
"strip-ansi": "^3.0.1",
"vue-jest": "^3.0.3",
"worker-loader": "^2.0.0",
"yorkie": "^2.0.0"
},
"lint-staged": {
"*.js": [
"eslint --ext .js,.vue src",
"git add"
],
"*.vue": [
"eslint --ext .js,.vue src",
"git add"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"engines": {
"node": ">= 8.15.0",
"npm": ">= 6.4.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}