This repository was archived by the owner on Sep 20, 2019. It is now read-only.
forked from hashgraph/MyHbarWallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.41 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.41 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
93
94
95
96
97
{
"name": "myhbarwallet",
"version": "0.2.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "npm-run-all lint:js lint:css",
"lint:js": "vue-cli-service lint",
"lint:css": "stylelint --fix 'src/**/*.vue' 'src/**/*.css'",
"test": "npm-run-all test:unit",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.24",
"@fortawesome/free-solid-svg-icons": "^5.11.1",
"@fortawesome/vue-fontawesome": "^0.1.7",
"@hashgraph/sdk": "^0.5.1",
"@mdi/js": "^4.4.95",
"@vue/composition-api": "^0.3.1",
"bignumber.js": "^9.0.0",
"html2pdf.js": "^0.9.1",
"jdenticon": "^2.2.0",
"jspdf": "^1.5.3",
"qrcode.vue": "^1.6.3",
"ua-parser-js": "^0.7.20",
"vue": "^2.6.10",
"vue-i18n": "^8.14.1",
"vue-router": "^3.1.3",
"vuex": "^3.1.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@improbable-eng/grpc-web-node-http-transport": "^0.11.0",
"@launchbadge/eslint-config": "^0.12.1",
"@types/core-js": "2.x.x",
"@types/jest": "^24.0.18",
"@types/prettier": "1.18.2",
"@types/ua-parser-js": "^0.7.33",
"@types/jspdf": "^1.3.1",
"@types/zxcvbn": "^4.4.0",
"@vue/cli-plugin-babel": "^4.0.0-rc.3",
"@vue/cli-plugin-e2e-nightwatch": "^3.11.0",
"@vue/cli-plugin-eslint": "^4.0.0-rc.3",
"@vue/cli-plugin-typescript": "^4.0.0-rc.3",
"@vue/cli-plugin-unit-jest": "^4.0.0-rc.3",
"@vue/cli-service": "^4.0.0-rc.3",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"chromedriver": "^77.0.0",
"cross-env": "^6.0.0",
"cssnano-preset-advanced": "^4.0.7",
"eslint": "^6.3.0",
"image-webpack-loader": "^6.0.0",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.1.1",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"postcss-font-magician": "^2.2.2",
"postcss-normalize": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.18.2",
"stylelint": "^11.0.0",
"stylelint-a11y": "^1.2.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-csstree-validator": "^1.5.2",
"stylelint-declaration-block-no-ignored-properties": "^2.1.0",
"stylelint-declaration-strict-value": "^1.1.3",
"stylelint-no-indistinguishable-colors": "^1.2.1",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-no-unused-selectors": "^1.0.13",
"stylelint-order": "^3.1.1",
"stylelint-prettier": "^1.1.1",
"stylelint-use-logical": "^1.1.0",
"stylelint-value-no-unknown-custom-properties": "^2.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.2",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"stylelint --fix 'src/**/*.vue' 'src/**/*.css'",
"git add"
],
"*.css": [
"stylelint --fix 'src/**/*.css'",
"git add"
]
}
}