-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.48 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
{
"name": "bpassword",
"version": "1.0.0",
"description": "BPassword extension for chrome",
"author": "lanbery",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack --config ci/webpack.config.js --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --config ci/webpack.config.js --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch",
"clean": "rm -rf dist/**",
"init:dev": "node ci/init-develop-env.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@mdi/font": "^5.5.55",
"axios": "^0.20.0",
"bip39": "^3.0.2",
"brfs": "^2.0.2",
"browser-passworder": "^2.0.3",
"browserify-unibabel": "^3.0.0",
"bs58": "^4.0.1",
"clipboard": "^2.0.6",
"crypto-js": "^4.0.0",
"debounce-stream": "^2.0.0",
"end-of-stream": "^1.4.4",
"eth-keyring-controller": "^6.1.0",
"eth-simple-keyring": "^4.0.0",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.4",
"extension-port-stream": "^1.0.0",
"extensionizer": "^1.0.1",
"idb": "^5.0.4",
"is-stream": "^2.0.0",
"jquery": "^3.5.1",
"js-base64": "^3.4.5",
"lodash": "^4.17.20",
"loglevel": "^1.7.0",
"obj-multiplex": "^1.0.0",
"obs-store": "^4.0.3",
"post-message-stream": "^3.0.0",
"promise-to-callback": "^1.0.0",
"pump": "^3.0.0",
"qrcode": "^1.4.4",
"readable-stream": "2.3.3",
"resize-observer-polyfill": "^1.5.1",
"safe-event-emitter": "^1.0.1",
"sha3": "^2.1.3",
"store": "^2.0.12",
"vue": "^2.6.12",
"vue-count-to": "^1.0.13",
"vue-i18n": "^8.21.0",
"vue-router": "^3.4.3",
"vuetify": "^2.3.9",
"vuex": "^3.5.1",
"web3": "^1.2.11",
"web3-utils": "^1.2.11",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/runtime-corejs3": "^7.11.2",
"archiver": "^5.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^3.4.0",
"deepmerge": "^4.2.2",
"ejs": "^3.1.5",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"fibers": "^5.0.0",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.1",
"husky": "^2.4.0",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.3",
"url-loader": "^4.1.0",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.6.0",
"web-ext-types": "^3.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-extension-reloader": "^1.1.4"
}
}