-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.19 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
{
"name": "dar-to-oar",
"description": "Converter",
"version": "0.9.0",
"license": "MIT",
"homepage": "https://github.com/SARDONYX-sard/dar-to-oar",
"private": true,
"type": "module",
"scripts": {
"build": "rimraf ./gui/frontend/out && tauri build",
"build:front": "next build ./gui/frontend",
"build:icons": "cargo tauri icon ./gui/backend/icons/icon.png",
"dev": "tauri dev",
"dev:front": "next ./gui/frontend",
"fmt": "biome format --write ./ && prettier --cache --write \"**/*.{yaml,yml}\" --ignore-path ./.gitignore && cargo fmt --all",
"lint": "next lint ./gui/frontend && biome lint ./ && cargo clippy --workspace",
"lint:fix": "npm run fmt && biome check --write ./ && next lint ./gui/frontend --fix && cargo clippy --workspace --fix --allow-staged --allow-dirty",
"tauri": "tauri",
"test": "vitest run",
"test:all": "npm test && npm run test:back",
"test:back": " cargo test --workspace",
"test:ui": "vitest --ui",
"test:watch": "vitest"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "6.1.4",
"@mui/lab": "6.0.0-beta.12",
"@mui/material": "6.1.4",
"@tauri-apps/api": "2.0.3",
"@tauri-apps/plugin-dialog": "2.0.1",
"@tauri-apps/plugin-fs": "2.0.1",
"@tauri-apps/plugin-shell": "2.0.1",
"i18next": "23.16.2",
"next": "14.2.15",
"notistack": "^3.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.1",
"react-i18next": "15.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tauri-apps/cli": "2.0.3",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react-swc": "3.7.1",
"better-typescript-lib": "^2.9.0",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"jsdom": "25.0.1",
"prettier": "^3",
"rimraf": "^6",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.3"
},
"overrides": {
"monaco-editor": "^0.49.0"
},
"packageManager": "[email protected]"
}