forked from sqlectron/sqlectron-gui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
117 lines (117 loc) · 3.38 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
115
116
117
{
"name": "Sqlectron",
"version": "1.29.1",
"homepage": ".",
"website": "https://sqlectron.github.io",
"description": "A simple and lightweight SQL client with cross database and platform support",
"author": {
"name": "The Sqlectron Team",
"email": "maxcnunes@gmail.com"
},
"main": "main.js",
"build": {
"appId": "org.sqlectron.gui",
"mac": {
"category": "public.app-category.developer-tools"
},
"dmg": {
"contents": [
{
"x": 438,
"y": 275,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 275,
"type": "file"
}
]
},
"linux": {
"depends": [],
"target": [
"deb",
"rpm",
"sh",
"freebsd",
"pacman",
"tar.xz",
"tar.gz"
]
},
"win": {
"target": [
"nsis",
"7z",
"zip"
]
}
},
"license": "MIT",
"bugs": "https://github.com/sqlectron/sqlectron-gui/issues",
"repository": {
"type": "git",
"url": "https://github.com/sqlectron/sqlectron-gui"
},
"scripts": {
"local": "electron . --local --dev",
"postinstall": "electron-builder install-app-deps",
"package": "electron-packager . --overwrite --platform=win32 --arch=ia32 --out=out --icon=public/favicon.ico",
"dist": "electron-builder",
"pack": "electron-builder --dir",
"start": "react-scripts start",
"dev": "electron . --dev",
"startbuild": "electron . --build --local",
"buildclient": "react-scripts build",
"clean": "rimraf dist",
"clean:osx": "rimraf dist/Sqlectron-darwin-*",
"clean:win": "rimraf dist/win* dist/Sqlectron-win*",
"clean:linux": "rimraf dist/Sqlectron-linux-* dist/*.deb",
"compile": "rimraf out && npm run compile:browser && npm run compile:renderer",
"compile:browser": "cross-env NODE_ENV=production babel ./src/browser -d out/browser",
"compile:renderer": "cross-env NODE_ENV=production webpack --progress --display-error-details --config ./webpack.prod.config",
"build:osx": "npm run clean:osx && build --osx",
"build:linux": "npm run clean:linux && build --linux",
"build:win": "npm run clean:win && build --windows",
"dist:all-arch": "npm run compile && build --ia32 --x64",
"dist:winlinux": "npm run compile && npm run build:linux && npm run build:win"
},
"dependencies": {
"axios": "^0.18.1",
"bunyan": "^1.8.12",
"cassandra-driver": "^4.0.0",
"csv-stringify": "^3.0.0",
"debug": "^4.2.0",
"env-paths": "^1.0.0",
"fomantic-ui-css": "^2.8.7",
"history": "^4.10.1",
"lodash.defaultsdeep": "^4.6.1",
"minimist": "^1.2.5",
"mkdirp": "^0.5.5",
"mssql": "^4.3.0",
"mysql": "^2.18.1",
"node-gyp": "^4.0.0",
"pg": "^7.18.2",
"portfinder": "^1.0.28",
"prettier": "^1.19.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^16.14.0",
"sql-query-identifier": "^1.1.0",
"sqlite3": "^4.2.0",
"ssh2": "0.8.5",
"styled-components": "^4.4.1",
"typescript": "^3.9.7",
"uuid": "^3.4.0",
"valida": "^2.4.1"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
]
}