-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
81 lines (81 loc) · 2.57 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
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
{
"name": "clamav-desktop",
"description": "Cross-platform desktop GUI for ClamAV antivirus.",
"license": "AGPL-3.0",
"version": "0.3.24",
"type": "module",
"main": "./packages/main/dist/index.cjs",
"engines": {
"node": ">=17",
"npm": ">=8"
},
"scripts": {
"build": "yarn build:main && yarn build:preload && yarn build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "rm -Rf ./dist && electron-builder build",
"dev": "node scripts/dev/watch.js",
"release": "electron-builder",
"test:lint": "eslint --ext js,ts,tsx .",
"test:type": "tsc",
"postversion": "git push origin HEAD --tags"
},
"dependencies": {
"@singularity/core": "2.5.0",
"bhala": "2.1.0",
"bootswatch": "5.1.3",
"electron-is-dev": "2.0.0",
"electron-squirrel-startup": "1.0.0",
"electron-updater": "4.6.5",
"execa": "6.1.0",
"ps-list": "8.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "2.2.0",
"react-icons": "4.3.1",
"shelljs": "0.8.5",
"source-map-support": "0.5.21",
"styled-components": "5.3.3",
"terminate": "2.5.0"
},
"devDependencies": {
"@ivangabriele/eslint-config-typescript-react": "3.0.1",
"@ivangabriele/prettier-config": "3.0.2",
"@types/ps-node": "0.1.1",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/shelljs": "0.8.11",
"@types/styled-components": "5.1.22",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"@vitejs/plugin-react": "1.2.0",
"cross-env": "7.0.3",
"electron": "17.0.0",
"electron-builder": "22.14.13",
"eslint": "8.9.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"fs-extra": "10.0.0",
"prettier": "2.5.1",
"typescript": "4.5.5",
"vite": "2.8.1",
"webpack": "5.68.0"
},
"author": {
"name": "Ivan Gabriele",
"email": "[email protected]",
"url": "https://www.ivangabriele.com"
},
"prettier": "@ivangabriele/prettier-config"
}