This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 2.68 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
{
"name": "Sparklez",
"description": "Database Tool",
"author": "Firework Web e Mobile <[email protected]>",
"main": "dist/electron.js",
"version": "0.0.8",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "electron .",
"theme:variables": "rm ./src/css/element-variables.css && et -i ./src/css/element-variables.css",
"theme:compile": "et -c ./src/css/element-variables.css -o ./src/css/theme",
"pack:all": "yarn pack:osx && yarn pack:linux",
"pack:osx": "electron-packager dist Sparklez --out=build --platform=darwin --arch=x64 --build-version=64-bit --icon=src/assets/installer/icon.icns --prune --asar --overwrite",
"pack:linux": "electron-packager dist Sparklez --out=build --platform=linux --arch=x64 --build-version=64-bit --icon=src/assets/installer/icon.ico --prune --asar --overwrite",
"build:all": "yarn build:osx && yarn build:linux",
"build:osx": "build --mac --x64",
"build:linux": "build --linux --x64",
"pack:build:all": "yarn pack:all && yarn build:all",
"pack:build:osx": "yarn pack:osx && yarn build:osx",
"pack:build:linux": "yarn pack:linux && yarn build:linux"
},
"build": {
"productName": "Sparklez",
"appId": "com.fireworkweb.sparklez",
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"default"
]
},
"linux": {
"category": "Development",
"target": [
"deb"
]
},
"directories": {
"buildResources": "src/assets/installer",
"output": "build",
"app": "dist"
}
},
"dependencies": {
"element-theme-default": "^1.3.5",
"element-ui": "^2.4.2",
"font-awesome": "^4.7.0",
"highlight.js": "^9.12.0",
"knex": "^0.14.6",
"moment": "^2.22.2",
"mysql": "^2.13.0",
"mysqldump": "^1.4.2",
"vue": "^2.5.16",
"vue-lodash": "^2.0.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"electron": "^2.0.3",
"electron-builder": "^20.16.2",
"electron-packager": "^12.1.0",
"element-theme": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"laravel-mix": "^2.1.11",
"vue-devtools": "^4.1.4"
}
}