-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.02 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
{
"name": "electron-todo-app",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/Kevin-Illu/quicktask.git"
},
"description": "QuickApp es una aplicacion para ayudarte a ser productivo.",
"authors": "Kevin Illu",
"main": "dist/main/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "electron ./dist/main/main.js",
"css": "sass --watch ./src/render/scss/index.scss ./public/styles/index.css",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,ts}\"",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make --platform=linux --arch=x64 --ignore=\"(.gitignore|.git|node_modules|.DS_Store)\" --appPath=./dist",
"publish": "electron-forge publish",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder --windows --linux",
"release": "electron-builder --windows --linux --publish always"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^6.0.5",
"@electron-forge/maker-deb": "^6.0.5",
"@electron-forge/maker-rpm": "^6.0.5",
"@electron-forge/maker-squirrel": "^6.0.5",
"@electron-forge/maker-zip": "^6.0.5",
"@electron-forge/publisher-github": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-prebuilt-compile": "^1.3.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"electron-reloader": "^1.2.3",
"electron-squirrel-startup": "^1.0.0",
"update-electron-app": "^2.0.1"
}
}