forked from louvorja/louvorja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.71 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
{
"name": "louvorja",
"version": "23.9.5",
"author": "Mayco Rolbuche",
"authorEmail": "[email protected]",
"description": "LouvorJA",
"homepage": "https://louvorja.com.br/",
"projectUrl": "https://github.com/louvorja/louvorja",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy": "node ftp-deploy.js",
"db": "npx nodemon ./src/database/server.js",
"electron:start": "vue-cli-service electron:serve",
"electron:serve": "vue-cli-service electron:serve",
"electron:build__": "node update-build-code.js && vue-cli-service electron:build && vue-cli-service electron:build --linux",
"electron:build": "node update-build-code.js && vue-cli-service electron:build",
"build:win": "node update-build-code.js && vue-cli-service electron:build --win",
"build:linux": "node update-build-code.js && vue-cli-service electron:build --linux",
"build:mac": "node update-build-code.js && vue-cli-service electron:build --mac",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"update-build-code": "node update-build-code.js",
"git:publish": "git pull origin main && git checkout main && git merge develop && git push -u origin main && git checkout develop",
"build:web": "version.bat && npm run build && git push && npm run git:publish && npm run deploy"
},
"main": "background.js",
"dependencies": {
"axios": "^1.4.0",
"core-js": "^3.30.1",
"cors": "^2.8.5",
"electron-browser-storage": "^1.0.7",
"express": "^4.18.2",
"knex": "^2.4.2",
"knex-paginate": "^3.1.1",
"request": "^2.88.2",
"simple-deep-assign": "^1.0.0",
"sqlite3": "^5.1.6",
"vue": "^3.2.47",
"vue-axios": "^3.5.2",
"vue-fullscreen": "^3.1.1",
"vue-i18n": "^9.3.0-beta.17",
"vue-json-viewer": "^3.0.4",
"vue-router": "^4.1.6",
"vue-sessionstorage": "^1.0.0",
"vue3-draggable": "^2.0.9",
"vue3-shortkey": "^4.0.0",
"vuetify": "^3.3.5",
"webpack-plugin-vuetify": "^2.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-router": "~5.0.8",
"@vue/cli-plugin-vuex": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"electron": "^25.2.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"ftp-deploy": "^2.4.4",
"sass": "~1.62.1",
"sass-loader": "^13.2.2",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-template-compiler": "^2.7.14",
"vuex": "^4.1.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}