-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
{
"name": "hosty",
"description": "Hosts file manager based on Electron",
"version": "0.8.10",
"author": {
"name": "fiahfy",
"email": "d.fiahfy@gmail.com",
"url": "http://fiahfy.blogspot.com/"
},
"dependencies": {
"@fiahfy/electron-accelerator-formatter": "^0.0.2",
"@fiahfy/electron-context-menu": "^0.0.2",
"@nuxtjs/vuetify": "^0.5.1",
"debounce": "^1.2.0",
"electron-devtools-installer": "^2.2.3",
"electron-window-state": "^5.0.1",
"is-ip": "^3.0.0",
"material-design-icons-iconfont": "^5.0.1",
"nuxt": "^2.3.4",
"sudo-prompt": "^9.0.0",
"typeface-roboto": "^0.0.54",
"vuex-persistedstate": "^2.0.0"
},
"devDependencies": {
"@fiahfy/icns-convert": "^0.0.5",
"@fiahfy/ico-convert": "^0.0.4",
"cross-env": "^5.1.4",
"electron": "^5.0.2",
"electron-builder": "^20.8.1",
"eslint": "^5.10.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^2.3.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"sass-loader": "^7.1.0",
"vuetify-loader": "^1.1.1"
},
"keywords": [
"electron",
"nuxt",
"vue",
"vuetify"
],
"main": "main.js",
"private": true,
"productName": "Hosty",
"repository": {
"type": "git",
"url": "https://github.com/fiahfy/hosty"
},
"scripts": {
"build": "nuxt generate",
"dev": "cross-env NODE_ENV=development run-p serve electron",
"electron": "electron main.js",
"lint": "eslint -f codeframe --ext .js,.vue --ignore-path .gitignore .",
"release": "build -mw",
"resources": "run-p resources:*",
"resources:icns": "icns-convert build/icon.png",
"resources:ico": "ico-convert build/icon.png",
"serve": "nuxt",
"test": "run-s lint"
}
}