-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 952 Bytes
/
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
{
"name": "ez-vault",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"prettier:react:check": "prettier --check ./src",
"prettier:react:fix": "prettier --write ./src",
"prettier:tauri:check": "prettier --check ./src-tauri/src",
"prettier:tauri:fix": "prettier --write ./src-tauri/src"
},
"dependencies": {
"@tailwindcss/vite": "4.0.0-beta.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.3.0",
"tailwindcss": "4.0.0-beta.8"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"daisyui": "5.0.0-alpha.58",
"prettier": "3.4.2",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}