forked from kvnxiao/tauri-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "bithive",
"version": "0.2.2",
"private": true,
"author": {
"name": "MrV",
"email": "[email protected]"
},
"scripts": {
"next-start": "cross-env BROWSER=none next dev",
"next-build": "next build",
"tauri": "tauri",
"build": "tauri build",
"dev": "tauri dev",
"lint": "next lint && biome check src/",
"lint:fix": "next lint --fix",
"prepare": "husky"
},
"dependencies": {
"@tanstack/react-query": "^4.29.0",
"@tauri-apps/api": "^2.0.2",
"@tauri-apps/plugin-shell": ">=2.0.0",
"@tauri-apps/plugin-window-state": "~2",
"clsx": "^2.1.1",
"daisyui": "^4.12.10",
"next": "^14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "latest"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@tauri-apps/cli": "^2.0.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.11",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.0",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}