-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
{
"name": "crontaber",
"version": "1.4.0",
"description": "An Electron application with React",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "https://www.electronjs.org",
"scripts": {
"fmt": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "pnpm run build && electron-builder --win --config",
"build:mac": "pnpm run build && electron-builder --mac --config",
"build:linux": "pnpm run build && electron-builder --linux --config",
"pack:linux": "pnpm run build && electron-builder --linux --dir"
},
"dependencies": {
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"@mantine/code-highlight": "^7.1.7",
"@mantine/core": "^7.1.7",
"@mantine/form": "^7.1.7",
"@mantine/hooks": "^7.1.7",
"@mantine/modals": "^7.1.7",
"@mantine/notifications": "^7.1.7",
"@tabler/icons-react": "^2.40.0",
"croner": "^7.0.4",
"cronstrue": "^2.41.0",
"execa": "^8.0.1",
"fuse.js": "^7.0.0",
"ms": "^2.1.3",
"pouchdb": "^8.0.1",
"react-router-dom": "^6.18.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.1",
"@electron-toolkit/eslint-config-prettier": "^1.0.1",
"@vitejs/plugin-react": "^4.0.4",
"electron": "^25.6.0",
"electron-builder": "^24.6.3",
"electron-vite": "^1.0.27",
"eslint": "^8.47.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.9.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.4.9"
}
}