generated from sindresorhus/electron-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.79 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
{
"name": "process-explorer",
"productName": "Process Explorer",
"version": "0.0.4",
"description": "Process Explorer based on electron",
"license": "MIT",
"repository": "sindresorhus/electron-boilerplate",
"author": {
"name": "Ilya Lesik",
"email": "[email protected]",
"url": "https://lessmess.agency/"
},
"scripts": {
"react-start": "parcel --no-cache -p 3000 index.html",
"react-build": "parcel build index.html --out-dir build --public-url ./",
"postinstall": "electron-builder install-app-deps",
"start": "concurrently \"BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron . \"",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos",
"copy-static": "cp -R static/ build/",
"clean-build": "rm -rf build/ .cache dist/",
"build": "npm run clean-build && npm run copy-static && npm run react-build && npm run dist",
"release": "np",
"typescript": "tsc -p tsconfig.json --noEmit",
"prettier": "prettier \"*/**/*.+(js|ts|tsx)\" --ignore-path ./.prettierignore --write && git add . && git status",
"test": "jest",
"tsc": "tcm src",
"tscw": "tcm src -w"
},
"pre-commit": [
"test",
"typescript",
"prettier"
],
"dependencies": {
"@babel/preset-typescript": "^7.3.3",
"@types/ramda": "^0.26.18",
"classcat": "^4.0.2",
"d3": "^5.9.7",
"effector": "^20.0.0",
"effector-react": "^20.1.1",
"electron-context-menu": "^0.12.1",
"electron-debug": "^3.0.0",
"electron-is-dev": "^1.1.0",
"electron-store": "^3.3.0",
"electron-unhandled": "^2.2.0",
"electron-updater": "^4.0.6",
"electron-util": "^0.12.0",
"fkill": "^6.2.0",
"ps-list": "^6.3.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.16",
"autoprefixer": "^9.6.1",
"concurrently": "^4.1.1",
"electron": "^18.3.7",
"electron-builder": "^20.38.4",
"electron-react-devtools": "^0.5.3",
"jest": "^24.8.0",
"jest-css-modules": "^2.1.0",
"np": "^5.0.3",
"parcel-bundler": "^1.12.3",
"postcss-modules": "^1.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typed-css-modules": "^0.6.0",
"typescript": "^3.5.3",
"wait-on": "^3.3.0"
},
"homepage": "./",
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "agency.lessmess.ProcessExplorer",
"files": [
"index.js",
"build/**/*",
"static/**/*"
],
"mac": {
"category": "public.app-category.social-networking",
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
}
}