-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.3 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
{
"name": "gitpile",
"version": "1.0.1",
"description": "a multiple git repo GUI",
"main": "index.js",
"devDependencies": {
"concurrently": "^7.0.0",
"electron": "^16.0.6",
"electron-packager": "^15.4.0",
"rimraf": "^3.0.2"
},
"scripts": {
"i:client": "cd client && npm i && cd ../",
"i:server": "cd server && npm i && cd ../",
"i:all": "npm i && npm run i:client && npm run i:server",
"develop": "concurrently --names CLIENT,SERVER \"npm run develop --prefix ./client\" \"npm run develop --prefix ./server\"",
"build": "npm run build --prefix ./client",
"electron": "npm run build && electron index.js",
"package": "npm run build && electron-packager . gitpile --platform=win32 --arch=x64 --out build --overwrite --icon=./client/public/favicon.ico",
"clean": "rimraf ./package-lock.json && rimraf ./server/node_modules && rimraf ./server/package-lock.json && rimraf ./client/node_modules && rimraf ./client/package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whirledsol/gitpile.git"
},
"keywords": [
"git",
"gui",
"react"
],
"author": "whirledsol",
"license": "MIT",
"bugs": {
"url": "https://github.com/whirledsol/gitpile/issues"
},
"homepage": "https://github.com/whirledsol/gitpile#readme"
}