-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
101 lines (101 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "r2-t2",
"version": "0.2.5",
"type": "module",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@fontsource/open-sans": "^5.1.0",
"@mantine/carousel": "^7.15.1",
"@mantine/code-highlight": "^7.15.1",
"@mantine/core": "^7.15.1",
"@mantine/dates": "^7.15.1",
"@mantine/dropzone": "^7.15.1",
"@mantine/form": "^7.15.1",
"@mantine/hooks": "^7.15.1",
"@mantine/modals": "^7.15.1",
"@mantine/notifications": "^7.15.1",
"@mantine/nprogress": "^7.15.1",
"@mantine/spotlight": "^7.15.1",
"@mantine/tiptap": "^7.15.1",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-autostart": "^2.2.0",
"@tauri-apps/plugin-deep-link": "^2.2.0",
"@tauri-apps/plugin-dialog": "~2.2.0",
"@tauri-apps/plugin-fs": "~2.2.0",
"@tauri-apps/plugin-log": "~2",
"@tauri-apps/plugin-notification": "~2.2.0",
"@tauri-apps/plugin-opener": "^2.2.2",
"@tauri-apps/plugin-os": "~2.2.0",
"@tauri-apps/plugin-process": "~2.2.0",
"@tauri-apps/plugin-shell": "~2.2.0",
"@tauri-apps/plugin-store": "~2.2.0",
"@tauri-apps/plugin-updater": "~2.3.0",
"@tiptap/core": "^2.10.3",
"@tiptap/extension-link": "^2.10.3",
"@tiptap/pm": "^2.10.3",
"@tiptap/react": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.5.1",
"i18next": "^24.1.2",
"i18next-browser-languagedetector": "^8.0.2",
"js-cookie": "^3.0.5",
"localforage": "^1.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.1.2",
"react-i18next": "^15.2.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.0.2",
"react-transition-group": "^4.4.5",
"simplebar-react": "^3.3.0",
"typescript": "^5.7.2"
},
"scripts": {
"dev": "tauri dev",
"nvmrc": "node -v > .nvmrc",
"postinstall": "pnpm nvmrc",
"predev": "pnpm nvmrc",
"tauri": "tauri",
"start": "vite",
"rls": "dotenv-load tauri build",
"build": "vite build",
"preview": "vite preview",
"serve": "vite preview",
"preinstall": "pnpm add -g add sloc @tauri-apps/cli",
"sloc": "sloc src src-tauri/src",
"update": "concurrently \"pnpm up\" \"cd src-tauri && cargo update && cargo clean\"",
"test": "mocha"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@types/js-cookie": "^3.0.6",
"@vitejs/plugin-react": "^4.3.4",
"chai": "^5.1.2",
"concurrently": "^9.1.0",
"dotenv-load": "^3.0.0",
"mocha": "^11.0.1",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"selenium-webdriver": "^4.27.0",
"terser": "^5.37.0",
"toml": "^3.0.0",
"vite": "^6.0.3",
"vite-plugin-remove-console": "^2.2.0",
"vite-plugin-top-level-await": "^1.4.4"
},
"resolutions": {}
}