-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 KB
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
{
"name": "tauri-react-template",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@8.10.0",
"author": {
"name": "Your Name Here",
"email": "your-email-here@example.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@tauri-apps/api": "^1",
"antd": "^5.15.3",
"i18next": "^23.10.1",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.9.0",
"@tauri-apps/cli": "^1",
"@types/node": "^20.11.30",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"lint-staged": "^15.2.0",
"postcss": "^8.4.38",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.2",
"vite": "^5.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}