-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
81 lines (81 loc) · 2.15 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
{
"name": "electron-react-tailwind-template",
"author": {
"email": "[email protected]",
"name": "Barış DEMİRCİ",
"url": "https://338.rocks"
},
"description": "Electron app template with React and Tailwind CSS",
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/electron-react-tailwind-template"
},
"license": "GPL-3.0",
"version": "1.0.1",
"private": true,
"devDependencies": {
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.13",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2",
"tailwindcss": "3.2.4",
"taze": "^0.8.4",
"typescript": "^4.9.3",
"wait-on": "^6.0.1"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"auto-launch": "^5.0.5",
"electron-is-dev": "^2.0.0",
"electron-reloader": "^1.2.3",
"electron-updater": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.4.4",
"react-toastify": "^9.1.1",
"react-use": "^17.4.0"
},
"homepage": "./",
"main": "public/electron.js",
"scripts": {
"dev": "concurrently \"npm run react:dev\" \"npm run electron:wait\"",
"electron:wait": "wait-on tcp:3000 && npm run electron:dev",
"prebuild": "rimraf build && rimraf dist",
"react:build": "react-scripts build",
"react:dev": "cross-env BROWSER=none react-scripts start",
"electron:build": "electron-builder build --win --publish never",
"electron:deploy": "electron-builder build --win --publish always",
"electron:dev": "electron .",
"build": "npm run react:build && npm run electron:build",
"deploy": "npm run react:build && npm run electron:deploy",
"format": "prettier --write .",
"update": "taze latest -w"
},
"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"
]
}
}