-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "rai-mods",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "cross-env RUSTUP_TOOLCHAIN=nightly tauri dev",
"build": "tauri build",
"build-debug": "cross-env CARGO_TARGET_DIR=target/debug/standalone-build tauri build --debug --no-bundle",
"vite": "vite",
"tauri": "tauri",
"update-icons": "tauri icon backend/icons/icon-source.png",
"frontend:build": "tsc && vite build",
"frontend:dev": "vite",
"lint": "prettier ./frontend --write && eslint . --fix",
"lint-only": "eslint eslint.config.mjs --fix"
},
"prettier": {
"useTabs": true,
"singleAttributePerLine": true,
"quoteProps": "as-needed"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.11.1",
"@mantine/code-highlight": "7.13.1",
"@mantine/core": "7.13.1",
"@mantine/hooks": "7.13.1",
"@mantine/notifications": "7.13.1",
"@tabler/icons-react": "3.19.0",
"@tauri-apps/api": "2.0.1",
"@tauri-apps/cli": "2.0.0",
"@tauri-apps/plugin-dialog": "2.0.0",
"@tauri-apps/plugin-process": "2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tauri-apps/plugin-store": "2.0.0",
"@tauri-apps/plugin-updater": "2.0.0",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"@vitejs/plugin-react": "4.3.2",
"cross-env": "7.0.3",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "0.4.12",
"globals": "15.10.0",
"jotai": "2.10.0",
"postcss": "8.4.47",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "7.0.1",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-virtuoso": "4.10.4",
"typescript": "5.6.2",
"vite": "5.4.8"
}
}