-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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
{
"private": true,
"name": "dupimg-finder",
"description": "A tool to find duplicate image pairs or the most similar images of target image in your file system.",
"version": "1.1.0",
"repository": "https://github.com/LolipopJ/dupimg-finder.git",
"author": "LolipopJ <[email protected]>",
"license": "MIT",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:mac": "nextron build --mac",
"build:mac:universal": "nextron build --mac --universal",
"build:linux": "nextron build --linux",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"lint": "eslint . --ignore-path .gitignore",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@ant-design/cssinjs": "^1.21.1",
"@ant-design/icons": "^5.4.0",
"@reduxjs/toolkit": "^2.2.7",
"antd": "^5.20.5",
"electron-serve": "^1.3.0",
"electron-store": "^8.2.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"react-redux": "^9.1.2",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-transition-group": "^4.4.11",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"electron": "^31.4.0",
"electron-builder": "^24.13.3",
"eslint": "^8",
"eslint-config-next": "^14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"next": "^14.2.8",
"nextron": "^9.1.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
}
}