-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
{
"name": "mcsr-analytics",
"version": "0.2.0",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"tauri": "tauri",
"dev": "tauri dev",
"build": "tauri build",
"ui:dev": "vite",
"ui:build": "tsc && vite build",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --cache .",
"lint:ts": "tsc --noEmit",
"lint:clippy": "cargo clippy --manifest-path ./src-tauri/Cargo.toml --all-targets --all-features",
"lint:rustfmt": "cargo fmt --manifest-path ./src-tauri/Cargo.toml --all -- --check",
"fmt": "run-p fmt:*",
"fmt:tauri": "cargo fmt --manifest-path ./src-tauri/Cargo.toml --all",
"fmt:prettier": "prettier --write ."
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@tanstack/react-router": "^1.34.7",
"@tauri-apps/api": "2.0.0-beta.3",
"@tauri-apps/plugin-log": "2.0.0-beta.1",
"@tauri-apps/plugin-process": "2.0.0-beta.1",
"@tauri-apps/plugin-shell": "2.0.0-beta.1",
"@tauri-apps/plugin-store": "2.0.0-beta.1",
"@tauri-apps/plugin-updater": "2.0.0-beta.1",
"antd": "^5.17.4",
"autoprefixer": "^10.4.19",
"marked": "^12.0.2",
"moment": "^2.30.1",
"postcss": "^8.4.38",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.34.7",
"@tauri-apps/cli": "2.0.0-beta.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"npm-run-all": "^4.1.5",
"prettier": "3.3.2",
"typescript": "^5.4.5",
"vite": "^5.2.12"
}
}