-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
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
{
"name": "electron-react-tailwind-template",
"author": {
"email": "demirci.baris38@gmail.com",
"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,
"type": "module",
"devDependencies": {
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^34.1.1",
"electron-builder": "^25.1.8",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"react-scripts": "^5.0.1",
"rimraf": "^6.0.1",
"tailwindcss": "3.2.4",
"taze": "^18.4.0",
"typescript": "^5.7.3",
"wait-on": "^8.0.2"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"auto-launch": "^5.0.6",
"electron-is-dev": "^3.0.1",
"electron-reloader": "^1.2.3",
"electron-updater": "^6.3.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.5",
"react-toastify": "^11.0.3",
"react-use": "^17.6.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"
]
}
}