-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
112 lines (112 loc) · 2.92 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
{
"name": "@missmonacoin/monya",
"version": "3.10.5",
"description": "<p style=\"text-align:center\">",
"main": "dist/dist.js",
"repository": {
"type": "git",
"url": "git+https://github.com/monya-wallet/monya.git"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@missmonacoin/bip39-eng": "^2.5.0",
"@missmonacoin/bitcoincashjs-lib": "^1.0.1",
"@missmonacoin/bitcoinjs-lib-zcash": "^1.0.6",
"@missmonacoin/blackcoinjs-lib": "^1.0.0",
"ajv": "^6.10.2",
"axios": "^0.21.2",
"bignumber.js": "^5.0.0",
"bitcoinjs-lib": "^3.2.0",
"bitcoinjs-message": "^2.1.0",
"buffer": "^5.4.3",
"coinselect": "^3.1.12",
"cordova-plugin-qrscanner": "^2.6.2",
"ethereumjs-wallet": "^0.6.0",
"instascan": "^1.0.0",
"lodash": "^4.17.15",
"nem-sdk": "^1.6.4",
"onsenui": "^2.10.10",
"qrcode": "^1.4.4",
"qs": "^6.9.1",
"ripple-keypairs": "^0.10.1",
"ripple-lib": "^1.8.0",
"vue": "2.5.13",
"vue-onsenui": "^2.6.2",
"vuex": "^3.1.2",
"web3": "^1.2.11",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-json-strings": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-syntax-import-meta": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"browser-sync": "^2.26.7",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.19.1",
"file-loader": "^1.1.11",
"gulp": "^4.0.2",
"gulp-eslint": "^4.0.0",
"gulp-imagemin": "^4.1.0",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^3.0.2",
"html-loader": "^0.5.1",
"husky": "^3.1.0",
"jsonpath": "^1.0.2",
"lint-staged": "^9.5.0",
"node-notifier": "^8.0.1",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"sync-request": "^5.0.0",
"uglify-es": "^3.3.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^0.5.9",
"vue-template-compiler": "2.5.13",
"vue-template-loader": "^0.4.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-stream": "^4.0.3"
},
"scripts": {
"start": "gulp",
"lint": "prettier --write \"component/*.js\" && prettier --write \"js/*.js\"",
"build": "gulp prod",
"build:cordova": "echo 'cordova command is deprecated' && gulp prod",
"postinstall": "cd ./node_modules/nem-sdk && npm install [email protected] && cd ../../node_modules/har-validator && npm install [email protected]"
},
"author": "monya-wallet",
"license": "MIT",
"bugs": {
"url": "https://github.com/monya-wallet/monya/issues"
},
"homepage": "https://github.com/monya-wallet/monya#readme",
"directories": {
"doc": "docs"
},
"keywords": [
"wallet",
"cryptocurrency",
"cordova",
"vue.js"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}