-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 3.93 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "bacman",
"version": "0.2.0",
"description": "Business (and activities) Continuity Manager for ISO 22301 BCMS",
"repository": "git@github.com:riboseinc/bacman.git",
"bugs": "https://github.com/riboseinc/bacman/issues",
"author": "Ribose Inc. <open.source@ribose.com>",
"license": "All Rights Reserved",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "cross-env DEBUG=electron-builder electron-builder",
"dist:win": "electron-builder -w",
"dist:mac": "electron-builder -m",
"pack": "electron-builder --dir",
"release": "electron-builder --publish always",
"cdist": "yarn compile && electron-builder -mlw",
"cdist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"electronWebpack": {
"staticSourceDirectory": "src/static",
"main": {
"webpackConfig": "main.webpack.js"
},
"renderer": {
"webpackConfig": "renderer.webpack.js"
}
},
"build": {
"productName": "bacman",
"appId": "org.riboseinc.bacman",
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"target": "dmg",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"entitlements": "assets/mac/entitlements.mac.inherit.plist",
"entitlementsInherit": "assets/mac/entitlements.mac.inherit.plist"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 440,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"artifactName": "bacman-${version}.${ext}"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable"
}
],
"icon": "build/icon.ico"
},
"nsis": {
"runAfterFinish": true,
"installerIcon": "build/icon.ico",
"artifactName": "electron-gha-${version}.${ext}"
},
"portable": {
"artifactName": "bacman.exe"
},
"appx": {
"backgroundColor": "#464646",
"publisherDisplayName": "bacman",
"artifactName": "bacman-${version}.${ext}"
},
"publish": [
{
"provider": "github",
"releaseType": "release"
}
]
},
"dependencies": {
"@blueprintjs/core": "^3.20.0",
"@blueprintjs/datetime": "^3.15.0",
"@blueprintjs/icons": "^3.12.0",
"@blueprintjs/select": "^3.11.2",
"@types/node-fetch": "^2.5.4",
"async-lock": "^1.2.2",
"coulomb": "https://github.com/coulombjs/coulomb#coulomb-v0.1.11-gitpkg",
"coulomb-panel": "https://github.com/riboseinc/coulomb-panel#coulomb-panel-v0.0.2-gitpkg",
"cytoscape": "3",
"electron-log": "^4.0.6",
"fs-extra": "^8.1.0",
"immer": "^8.0.1",
"moment": "^2.24.0",
"mousetrap": "^1.6.5",
"node-fetch": "^2.6.1",
"react": "^16.11.0",
"react-cytoscapejs": "^1.2.1",
"react-dom": "^16.11.0",
"react-transition-group": "^4.3.0",
"react-window": "^1.8.5",
"slugify": "^1.4.0",
"source-map-support": "^0.5.16",
"throttle-debounce": "^2.1.0"
},
"devDependencies": {
"@types/async-lock": "^1.1.1",
"@types/cytoscape": "^3.14.0",
"@types/fs-extra": "^8.0.0",
"@types/mousetrap": "^1.6.3",
"@types/node": "^12.12.7",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-transition-group": "^4.2.3",
"@types/react-window": "^1.8.1",
"@types/throttle-debounce": "^2.1.0",
"cross-env": "^7.0.0",
"electron": "^9.4.0",
"electron-builder": "^21.2.0",
"electron-notarize": "^0.2.1",
"electron-react-devtools": "^0.5.3",
"electron-webpack": "^2.7.4",
"electron-webpack-ts": "^3.2.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"sass-loader": "^8.0.2",
"typescript": "^3.7.2",
"typescript-plugin-css-modules": "^2.1.2",
"webpack": "~4.41.5"
}
}