forked from villith/relink-logs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.42 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
70
71
72
73
74
75
76
77
{
"name": "relink-logs",
"private": true,
"version": "1.12.7",
"type": "module",
"scripts": {
"dev": "node scripts/clean-target.mjs --quiet && node scripts/build-hook-dev.mjs && vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src",
"tsc": "tsc",
"format": "prettier --write --ignore-unknown --ext js,jsx,ts,tsx src ./src",
"format-check": "prettier --check --ignore-unknown --ext js,jsx,ts,tsx src ./src",
"tauri": "tauri",
"test": "vitest",
"bump": "node scripts/bump-version.mjs",
"clean:target": "node scripts/clean-target.mjs",
"prepare": "husky"
},
"dependencies": {
"@fontsource-variable/noto-sans": "^5.0.1",
"@hello-pangea/dnd": "^16.6.0",
"@mantine/charts": "^7.6.1",
"@mantine/core": "^7.6.1",
"@mantine/dropzone": "^7.6.1",
"@mantine/hooks": "^7.6.1",
"@mantine/modals": "^7.6.1",
"@phosphor-icons/react": "^2.1",
"@tauri-apps/api": "^1.6.0",
"@tiptap/core": "3.28.0",
"@tiptap/extension-document": "3.28.0",
"@tiptap/extension-paragraph": "3.28.0",
"@tiptap/extension-text": "3.28.0",
"@tiptap/extensions": "3.28.0",
"@tiptap/pm": "3.28.0",
"@tiptap/react": "3.28.0",
"html2canvas": "^1.4.1",
"i18next": "^23.10.0",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-resources-to-backend": "^1.2.0",
"jsurl": "0.1.5",
"nuqs": "^2.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.0.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.22.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.3",
"@testing-library/react": "^15.0.6",
"@types/node": "^24.13.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-i18next": "^6.1.5",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.1.7",
"jsdom": "^24.0.0",
"lint-staged": "^15.5.2",
"postcss": "^8.4.35",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"sharp": "^0.35.3",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vitest": "^1.6.0"
}
}