-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "electron-todo",
"version": "1.0.0",
"description": "Simple todo app",
"homepage": "./",
"main": "./electron/main.js",
"scripts": {
"start": "vite & electronmon .",
"start:web": "vite --open",
"build": "vite build",
"build:mac": "npm run build && electron-builder -m --config builder.config.ts",
"build:win": "npm run build && electron-builder -w --config builder.config.ts",
"build:linux": "npm run build && electron-builder -l --config builder.config.ts",
"lint": "eslint . --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krauchuk/electron-todo.git"
},
"author": "Ihar Krauchuk <ihar.krauchuk@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"electron": "^25.2.0",
"electron-builder": "^24.4.0",
"electronmon": "^2.0.2",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"typescript": "^5.1.6",
"vite": "^4.3.9"
},
"dependencies": {
"clsx": "^1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.3.9"
}
}