This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
113 lines (113 loc) · 3.17 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
{
"name": "@alephdata/datadesktop",
"version": "2.7.0",
"description": "Desktop graph visualization application",
"repository": {
"type": "git",
"url": "git+https://github.com/alephdata/datadesktop.git"
},
"author": "OCCRP Data <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alephdata/datadesktop/issues"
},
"homepage": "./",
"main": "build/electron.js",
"build": {
"appId": "com.electron.visdesktop",
"productName": "Aleph Data Desktop",
"publish": "github",
"afterSign": "scripts/notarize.js",
"artifactName": "${productName}.${ext}",
"fileAssociations": [
{
"ext": "ftm",
"name": "FTM"
},
{
"ext": "vis",
"name": "VIS"
}
],
"files": [
"src/main/preload.js",
"build/**/*",
"node_modules/**/*",
"icon.*"
],
"mac": {
"icon": "./logo.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist",
"target": [
{
"target": "dmg",
"arch": ["universal"]
}
]
},
"linux": {
"target": "deb",
"executableName": "AlephDataDesktop",
"icon": "./logo.png"
},
"win": {
"target": "portable",
"icon": "./logo.png"
}
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.5",
"electron-updater": "^4.6.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-scripts": "^4.0.3",
"typescript": "^4.5.5"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"start-renderer-dev": "cross-env BROWSER=none npm run react-start",
"start-renderer-dev-browser-only": "REACT_APP_ENV=browser_only npm run react-start",
"start-app-dev": "tsc-watch ./src/main/electron.ts --outDir ./build --onSuccess \"electron ./build/electron.js\" --onFailure \"echo Compilation Failed\" --compiler typescript/bin/tsc",
"electron-build": "tsc ./src/main/electron.ts --outDir ./build && electron-builder",
"electron-dist": "tsc ./src/main/electron.ts --outDir ./build && electron-builder -mwl -p always",
"build": "npm run react-build && npm run electron-build",
"release": "npm run react-build && npm run electron-dist"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@alephdata/react-ftm": "^2.6.6",
"@blueprintjs/core": "3.52.0",
"@blueprintjs/select": "3.18.11",
"@types/node": "^17.0.13",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"cross-env": "^7.0.3",
"electron": "^16.0.8",
"electron-builder": "^23.1.0",
"electron-notarize": "^1.1.1",
"electron-reload": "^2.0.0-alpha.1",
"tsc-watch": "^4.6.0"
}
}