-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "node-multiplatform-tauri",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,jsx,tsx}' --fix",
"format": "prettier --write 'src/**/*.{js,ts,jsx,tsx}'",
"format:check": "prettier --check 'src/**/*.{js,ts,jsx,tsx}'",
"lint-and-format": "eslint 'src/**/*.{js,ts,jsx,tsx}' && prettier --write 'src/**/*.{js,ts,jsx,tsx}'"
},
"dependencies": {
"@tauri-apps/api": "^1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@tauri-apps/cli": "^1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.11.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0",
"prettier": "^3.3.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.8.0",
"vite": "^5.3.1"
}
}