-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.2 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.2 KB
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
{
"name": "node-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.24",
"@fortawesome/free-brands-svg-icons": "^5.11.1",
"@fortawesome/pro-light-svg-icons": "^5.11.1",
"@fortawesome/vue-fontawesome": "^0.1.7",
"@logosnetwork/logos-rpc-client": "^1.1.33",
"@logosnetwork/logos-webwallet-sdk": "^0.3.10",
"@xkeshi/vue-qrcode": "^1.0.0",
"axios": "^0.19.0",
"big-integer": "^1.6.45",
"bootstrap-vue": "^2.0.2",
"compression-webpack-plugin": "^3.0.0",
"flatted": "^2.0.1",
"lodash.clonedeep": "^4.5.0",
"lodash.orderby": "^4.6.0",
"mqtt": "^3.0.0",
"mqtt-regex": "^1.0.5",
"prismjs": "^1.24.0",
"vue": "^2.6.10",
"vue-affix": "^0.5.2",
"vue-headful": "^2.0.1",
"vue-i18n": "^8.14.1",
"vue-infinite-scroll": "^2.0.2",
"vue-moment": "^4.0.0",
"vue-multiselect": "^2.1.6",
"vue-prism-editor": "^0.3.0",
"vue-qrcode-reader": "^2.0.4",
"vue-resize": "^0.4.5",
"vue-router": "^3.1.3",
"vue-toasted": "^1.1.27",
"vue-virtual-scroll-list": "^1.4.2",
"vuex": "^3.1.1",
"vuex-persist": "^2.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-standard": "^4.0.0",
"lint-staged": "^9.3.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.0",
"vue-cli-plugin-i18n": "^0.6.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}