-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.82 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
{
"name": "iop-webwallet",
"version": "0.2.5",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build && npm run move-wasm",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"move-wasm": "node wasm_path_fixer.js",
"release": "release-it --no-npm-publish"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.19",
"@fortawesome/free-brands-svg-icons": "5.9.0",
"@fortawesome/free-regular-svg-icons": "5.9.0",
"@fortawesome/free-solid-svg-icons": "5.9.0",
"@fortawesome/vue-fontawesome": "0.1.6",
"@internet-of-people/sdk": "5.0.1",
"axios": "0.20.0",
"bignumber.js": "9.0.0",
"bootstrap": "4.5.0",
"bootstrap-vue": "2.14.0",
"core-js": "3.6.4",
"fast-sha256": "1.3.0",
"glob": "7.1.6",
"optional-js": "2.1.1",
"vue": "2.6.11",
"vue-class-component": "7.2.3",
"vue-clipboard2": "^0.3.1",
"vue-property-decorator": "8.4.1",
"vue-router": "3.1.6",
"vuex": "3.1.3",
"vuex-class": "0.3.2",
"vuex-persist": "2.2.0"
},
"devDependencies": {
"@fortawesome/fontawesome-common-types": "0.2.25",
"@types/jest": "24.0.19",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"@vue/cli-plugin-babel": "4.3.0",
"@vue/cli-plugin-eslint": "4.3.0",
"@vue/cli-plugin-router": "4.3.0",
"@vue/cli-plugin-typescript": "4.3.0",
"@vue/cli-plugin-unit-jest": "4.3.0",
"@vue/cli-plugin-vuex": "4.3.0",
"@vue/cli-service": "4.3.0",
"@vue/eslint-config-airbnb": "5.0.2",
"@vue/eslint-config-typescript": "5.0.2",
"@vue/test-utils": "1.0.3",
"eslint": "6.7.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-vue": "6.2.2",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"node-sass": "4.14.1",
"release-it": "14.2.1",
"rimraf": "3.0.2",
"sass-loader": "8.0.2",
"typescript": "3.8.3",
"vue-template-compiler": "2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{jsx,vue,ts,tsx}": [
"vue-cli-service lint"
]
},
"release-it": {
"git": {
"changelog": "npx auto-changelog -p --stdout --commit-limit false -u --commit-url 'https://github.com/Internet-of-People/iop-webwallet/commit/{id}' --compare-url 'https://github.com/Internet-of-People/iop-webwallet/compare/{from}..{to}' --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs --unreleased-only --hide-credit"
},
"hooks": {
"after:bump": "npx auto-changelog -p --commit-limit false -u --commit-url 'https://github.com/Internet-of-People/iop-webwallet/commit/{id}' --compare-url 'https://github.com/Internet-of-People/iop-webwallet/{from}..{to}' --unreleased false --hide-credit"
}
}
}