-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.26 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
{
"name": "deadhash",
"version": "2.2.3",
"description": "File and text hash calculator",
"homepage": "./",
"private": true,
"author": {
"name": "CodeDead",
"email": "[email protected]",
"url": "https://codedead.com"
},
"build": {
"appId": "com.codedead.deadhash",
"productName": "DeadHash",
"copyright": "Copyright © 2022 ${author}",
"win": {
"target": [
"nsis",
"portable"
],
"icon": "public/logo512.png"
},
"linux": {
"target": [
"AppImage"
],
"icon": "public/logo512.png"
},
"nsis": {
"license": "LICENSE",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
},
"main": "public/electron.js",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"crc": "^4.3.2",
"cross-env": "^7.0.3",
"electron-is-dev": "^2.0.0",
"react": "^18.2.0",
"react-contexify": "^6.0.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder -wl --publish=always",
"build": "yarn react-build && yarn electron-build -wl",
"start": "yarn react-build && concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^8.2.1",
"electron": "^26.2.1",
"electron-builder": "^24.6.4",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"wait-on": "^7.0.1"
},
"packageManager": "[email protected]"
}