-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.95 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
{
"name": "fat-wallet",
"version": "1.0.3",
"private": true,
"description": "Desktop wallet for FAT tokens. Factom Asset Tokens (FAT) is a protocol of tokenization built on top of the Factom blockchain.",
"author": {
"name": "Luciap Technology Inc.",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service electron:serve",
"build": "vue-cli-service electron:build",
"lint": "vue-cli-service lint",
"format": "prettier --write \"src/**/*.{js,vue}\"",
"generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"start": "npm run serve",
"test:unit": "vue-cli-service test:unit",
"test": "npm run test:unit"
},
"main": "background.js",
"dependencies": {
"node-hid": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@factoid.org/hw-app-fct": "^0.7.6",
"@fat-token/fat-js": "^1.3.0",
"@fortawesome/fontawesome-free": "^5.12.0",
"@ledgerhq/hw-transport-node-hid-noevents": "^4.78.0",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-unit-mocha": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.0-beta.30",
"ajv": "^6.10.2",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-polyfill": "^6.26.0",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"core-js": "^3.6.0",
"deepmerge": "^4.2.2",
"electron": "^7.1.7",
"electron-context-menu": "^0.15.1",
"electron-icon-builder": "^1.0.2",
"electron-store": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.0.1",
"factom": "1.2.8",
"factom-identity-lib": "^0.2.0-rc8",
"factom-keystore": "^0.4.0",
"fast-sha256": "^1.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"lodash.debounce": "^4.0.8",
"lodash.flatmap": "^4.5.0",
"lodash.groupby": "^4.6.0",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"node-cache": "^5.1.0",
"prettier": "^1.19.1",
"roboto-fontface": "*",
"semver": "^7.1.3",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"tweetnacl": "^1.0.1",
"uuid": "^3.3.3",
"vue": "^2.6.11",
"vue-cli-plugin-electron-builder": "^1.4.4",
"vue-cli-plugin-vuetify": "^2.0.2",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.11",
"vuetify": "^1.5.21",
"vuetify-loader": "^1.4.3",
"vuex": "^3.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}