forked from LiRenTech/project-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
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
70
71
72
73
74
75
76
77
78
79
{
"name": "project-graph",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest",
"format": "prettier --write ./src",
"prepare": "husky",
"docs:dev": "vitepress dev docs",
"docs:build": "git fetch --unshallow && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@generouted/react-router": "^1.19.9",
"@octokit/rest": "^21.0.2",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-cli": "~2.2.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-http": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "2.2.0",
"@tauri-apps/plugin-store": "^2.2.0",
"@tauri-apps/plugin-updater": "~2",
"i18next": "^24.2.0",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.2.0",
"react-router-dom": "^7.1.1",
"tauri-plugin-gamepad-api": "^0.0.5",
"vditor": "^3.10.8"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@nolebase/vitepress-plugin-enhanced-readabilities": "^2.12.0",
"@nolebase/vitepress-plugin-highlight-targeted-heading": "^2.12.0",
"@nolebase/vitepress-plugin-page-properties": "^2.12.0",
"@tauri-apps/cli": "^2.1.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jotai": "^2.11.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"sass-embedded": "^1.83.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"uuid": "^11.0.3",
"vite": "^6.0.6",
"vite-plugin-svgr": "^4.3.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue": "^3.5.13"
}
}