-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "@redvanjosh/electron-template",
"version": "1.0.2",
"author": "Red Van Josh",
"license": "MIT",
"description": "A electron starter kit meant to be dead simple. Comes bundled out-of-the-box with Tailwind CSS and Prettier",
"type": "commonjs",
"main": "main.js",
"scripts": {
"electron:start": "electron .",
"prettier:check": "prettier --check ./Frontend/**/*.{js,html,css} ./Handlers/**/*.js ./Helpers/**/*.js ./main.js",
"prettier:fix": "prettier --write ./Frontend/**/*.{js,html,css} ./Handlers/**/*.js ./Helpers/**/*.js ./main.js",
"tailwind:build": "npx tailwindcss -i ./tailwind.css -o ./Frontend/Css/main.css",
"tailwind:watch": "npx tailwindcss -i ./tailwind.css -o ./Frontend/Css/main.css --watch"
},
"repository": "https://github.com/RedVanJosh/electron-template",
"keywords": [
"electron",
"tailwind",
"prettier",
"development",
"training",
"tutorial",
"documentation",
"javascript"
],
"dependencies": {
"flowbite": "^1.5.3",
"fuse-fetch": "^1.0.5",
"prettier": "^2.7.1"
},
"devDependencies": {
"electron": "^21.1.1",
"tailwindcss": "^3.2.1"
}
}