-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.58 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
{
"name": "localhost-port-scanner",
"productName": "localhost-port-scanner",
"version": "1.0.0",
"description": "My Electron application description",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"tsc": "tsc --noEmit"
},
"keywords": [],
"author": {
"name": "danilo-89",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.4.2",
"@electron-forge/maker-deb": "^6.4.2",
"@electron-forge/maker-rpm": "^6.4.2",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2",
"@electron-forge/plugin-vite": "^6.4.2",
"@types/express": "^4.17.17",
"@types/kill-port": "^2.0.1",
"@types/lodash.range": "^3.2.7",
"@types/lodash.sorteduniq": "^4.2.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.15",
"electron": "26.2.1",
"eslint": "^8.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-loader": "^7.3.3",
"postcss-nesting": "^12.0.1",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.3.3",
"ts-node": "^10.0.0",
"typescript": "~4.5.4",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.10.0",
"@vitejs/plugin-react": "^4.0.4",
"clsx": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
"express": "^4.18.2",
"kill-port": "^2.0.1",
"lodash.range": "^3.2.0",
"lodash.sortby": "^4.7.0",
"lodash.sorteduniq": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.2"
}
}