-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
107 lines (107 loc) · 2.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "rename-photos",
"private": true,
"description": "A cross-platform desktop-app for renaming photos using EXIF data",
"keywords": [
"cross-platform",
"desktop-app",
"rename photos",
"rename files"
],
"license": "MIT",
"author": "Arman Tang",
"repository": {
"type": "git",
"url": "https://github.com/Arman19941113/rename-photos"
},
"type": "module",
"scripts": {
"lint": "eslint src",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@nextui-org/button": "^2.0.34",
"@nextui-org/dropdown": "^2.1.26",
"@nextui-org/input": "^2.2.2",
"@nextui-org/modal": "^2.0.36",
"@nextui-org/radio": "^2.1.2",
"@nextui-org/scroll-shadow": "^2.1.17",
"@nextui-org/snippet": "^2.0.38",
"@nextui-org/switch": "^2.0.31",
"@nextui-org/system": "^2.1.2",
"@nextui-org/table": "^2.0.36",
"@nextui-org/tabs": "^2.0.32",
"@nextui-org/theme": "^2.2.3",
"@nextui-org/tooltip": "^2.0.36",
"@tauri-apps/api": "2.0.0-rc.5",
"@tauri-apps/plugin-dialog": "2.0.0-rc.1",
"@tauri-apps/plugin-fs": "2.0.0-rc.2",
"@tauri-apps/plugin-shell": "2.0.0-rc.1",
"clsx": "^2.1.1",
"framer-motion": "^11.1.8",
"i18next": "^23.11.3",
"mime": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.1",
"react-toastify": "^10.0.5",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tauri-apps/cli": "2.0.0-rc.16",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"postcss-preset-env": "^9.5.11",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.4",
"tailwindcss": "3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"react/self-closing-comp": [
"error",
{
"component": true,
"html": true
}
]
}
},
"prettier": {
"$schema": "https://json.schemastore.org/prettierrc",
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"htmlWhitespaceSensitivity": "css",
"overrides": [
{
"files": [
"**/*.css"
],
"options": {
"singleQuote": false
}
}
]
}
}