-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.6 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
{
"name": "zpg",
"version": "0.0.20-dev",
"windowtitle": "ZPG",
"description": "Simple Easy Postgres Dev Tool",
"main": "main.js",
"repository": "https://github.com/nzaiko/zpg",
"scripts": {
"start": "node app.js",
"start-electron": "electron main.js",
"start-electron-test": "electron main.js --env.build_mode $npm_config_buildmode",
"build-desktop": "electron-builder",
"build-desktop-linux": "electron-builder build --linux --x64 -p never",
"build-desktop-all": "electron-builder build -mwl --x64",
"dev": "concurrently \"cd backend && npm start\" \"cd frontend && npm start\" ",
"backend": "cd backend && npm start",
"frontend": "cd frontend && npm start",
"build-frontend-server": "npm --prefix ./frontend run build-server",
"build-frontend-local": "npm --prefix ./frontend run build-local",
"build-frontend-desktop": "npm --prefix ./frontend run build-desktop"
},
"keywords": ["Postgres Editor","SQL Tool"],
"author": {
"name": "Finzaiko",
"email": "finzaiko@mail.com"
},
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^6.0.4",
"concurrently": "^5.3.0",
"electron": "^22.0.0",
"electron-builder": "^23.6.0"
},
"build": {
"productName": "ZPG",
"appId": "zpg.finzaiko.com",
"directories": {
"buildResources": "resources"
},
"files": [
"**/*",
"public/icons/**/*"
],
"extraResources": [
{
"from": "./public",
"to": "public"
}
],
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"icon": "./public/icons/mac/icon.icns"
},
"linux": {
"desktop": {
"StartupNotify": "false",
"Encoding": "UTF-8",
"MimeType": "x-scheme-handler/deeplink",
"StartupWMClass": "zpg"
},
"category": "Development",
"target": ["AppImage", "rpm", "deb"],
"icon": "./public/icons/png/"
},
"win": {
"target": ["nsis", "portable"],
"icon": "./public/icons/png/512x512.png"
}
},
"dependencies": {
"async": "^3.2.0",
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"fastify": "^3.13.0",
"fastify-cookie": "^5.3.0",
"fastify-cors": "^5.2.0",
"fastify-jwt": "^2.3.0",
"fastify-plugin": "^3.0.0",
"fastify-static": "^4.0.1",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"pg": "^8.5.1",
"pg-types": "^4.0.0",
"pino-pretty": "^4.7.1",
"qs": "^6.10.1",
"sqlite3": "^5.0.1"
}
}