-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.55 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
{
"name": "dotadraft",
"version": "0.1.2",
"description": "",
"author": {
"name": "Sascha Lippert",
"email": "[email protected]",
"url": "https://github.com/dotadraft"
},
"homepage": "https://github.com/dotadraft",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "src/main.js",
"scripts": {
"start": "electron .",
"watch": "webpack --config webpack.common.js --watch",
"build": "webpack --config webpack.prod.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"make:linux": "electron-builder --linux",
"make:macos": "electron-builder --mac",
"make:win": "electron-builder --win --x64"
},
"build": {
"productName": "Dotadraft",
"appId": "com.dotadraft",
"files": [
"build/**/*",
"assets/**/*",
"src/window/index.html",
"src/window/splash.html",
"src/backend/*",
"src/main.js",
"src/preload.js"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/images/react_app_logo.png",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 430,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "assets/icon_512.png",
"target": [
"nsis",
"zip",
"portable"
]
},
"linux": {
"icon": "assets/icon_512.png",
"target": [
"tar.gz",
"AppImage"
],
"category": "Development"
}
},
"devDependencies": {
"@babel/core": "^7.12.16",
"electron": "^12.0.2",
"electron-builder": "^22.10.5",
"electron-reload": "^1.5.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"bootstrap": "^4.6.0",
"bootstrap-icons": "^1.3.0",
"css-loader": "^5.0.2",
"electron-store": "^7.0.2",
"express": "^4.17.1",
"form-data": "^3.0.0",
"jsonpath": "^1.1.0",
"react": "^17.0.1",
"react-bootstrap": "^1.4.3",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-tabulator": "^0.14.4",
"sass": "^1.32.7",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"tabulator-tables": "^4.9.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}