-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.05 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vue-ponto",
"version": "0.1.0",
"private": true,
"author": {
"email": "joaopinheiro.ti@gmail.com",
"name": "João Paulo Pinheiro",
"url": "https://github.com/jotapepinheiro"
},
"description": "Sistema de Gerenciamento de Batida de Ponto",
"homepage": "https://github.com/jotapepinheiro/ponto",
"license": "MIT",
"repository": "github:jotapepinheiro/ponto",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"main": "background.js",
"build": {
"productName": "MinhasHoras",
"appId": "com.horas.minhas",
"directories": {
"output": "build"
},
"files": [
"dist/electron/**/*"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"artifactName": "minhasHoras-${version}-macos.${ext}",
"category": "public.app-category.productivity",
"icon": "./build/icons/icon.png"
},
"win": {
"icon": "./build/icons/icon.ico",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"artifactName": "minhasHoras-${version}-setup.${ext}"
},
"portable": {
"artifactName": "minhasHoras-${version}-portable.${ext}"
},
"linux": {
"artifactName": "minhasHoras-${version}-linux.${ext}",
"category": "Utility",
"icon": "./build/icons",
"target": [
"AppImage",
"deb",
"snap",
"tar.gz"
]
},
"snap": {
"summary": "Sistema de Gerenciamento de Batida de Ponto"
}
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.5",
"dayjs": "^1.8.32",
"tailwindcss": "^1.6.2",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vue-tailwind-picker": "^1.1.4",
"vue2-timepicker": "^1.1.3",
"vuex": "^3.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"electron": "^9.1.2",
"electron-devtools-installer": "^3.1.1",
"electron-icon-builder": "^1.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^1.19.1",
"vue-cli-plugin-electron-builder": "~2.0.0-rc.4",
"vue-template-compiler": "^2.6.11"
}
}