-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 817 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 817 Bytes
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
{
"name": "hello-node",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"eslint": "eslint ."
},
"dependencies": {
"@tauri-apps/api": "^1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart#v1"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@tauri-apps/cli": "^1",
"@types/node": "^20.14.11",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "9.x",
"eslint-plugin-react": "^7.34.4",
"globals": "^15.8.0",
"typescript": "^5.2.2",
"typescript-eslint": "^7.16.1",
"vite": "^5.3.1"
}
}