|
5 | 5 | "scripts": { |
6 | 6 | "setup": "scripts/setup", |
7 | 7 | "clean:setup": "scripts/clean-setup", |
8 | | - "build": "dotenv -- vite build", |
| 8 | + "build": "dotenv -c -- vite build", |
9 | 9 | "clean:build": "rm -rf dist && rm -rf src-tauri/target", |
10 | | - "dev": "dotenv -- tauri dev", |
| 10 | + "dev": "dotenv -c -- tauri dev", |
11 | 11 | "=== TEST ===": "", |
12 | 12 | "test": "yarn lint && yarn test:unit", |
13 | | - "test:unit": "dotenv -- vitest run", |
| 13 | + "test:unit": "dotenv -c -- vitest run", |
14 | 14 | "test:rust": "cargo test --manifest-path src-tauri/Cargo.toml", |
15 | | - "watch:test": "dotenv -- vitest watch", |
| 15 | + "watch:test": "dotenv -c -- vitest watch", |
16 | 16 | "=== LINT ===": "", |
17 | 17 | "lint": "concurrently \"yarn:lint:*\"", |
18 | 18 | "lint:format": "prettier --check --cache --cache-strategy content \"./src/**/*.{js,jsx,ts,tsx,json,less,html}\" \"!./src/build/**/*\"", |
19 | 19 | "lint:static": "eslint . --cache --cache-strategy content --ext .js,.jsx,.ts,.tsx", |
20 | | - "lint:ts": "dotenv -- tsc --build", |
| 20 | + "lint:ts": "dotenv -c -- tsc --build", |
21 | 21 | "lint:rust": "cargo fmt --manifest-path src-tauri/Cargo.toml --all --check", |
22 | 22 | "=== STORYBOOK ===": "", |
23 | | - "storybook": "dotenv -- storybook dev -p 6006", |
24 | | - "storybook:build": "dotenv -- storybook build", |
| 23 | + "storybook": "dotenv -c -- storybook dev -p 6006", |
| 24 | + "storybook:build": "dotenv -c -- storybook build", |
25 | 25 | "storybook:test": "npx chromatic --project-token=af98efe0a6a9", |
26 | 26 | "=== UTILITIES ===": "", |
27 | 27 | "clean": "concurrently \"yarn:clean:*\"", |
28 | | - "dev:server": "dotenv -- vite", |
29 | | - "dev:preview": "dotenv -- vite preview", |
| 28 | + "dev:server": "dotenv -c -- vite", |
| 29 | + "dev:preview": "dotenv -c -- vite preview", |
30 | 30 | "=== LIFE CYCLE HOOKS ===": "", |
31 | 31 | "postinstall": "SKIP_INSTALL=true yarn setup" |
32 | 32 | }, |
|
48 | 48 | "@frp-ts/react": "^1.0.0-beta.3", |
49 | 49 | "@noble/hashes": "latest", |
50 | 50 | "@tauri-apps/api": "^1.5.1", |
| 51 | + "@types/throttle-debounce": "^5.0.2", |
51 | 52 | "antd": "^5.10.3", |
52 | 53 | "base64url": "^3.0.1", |
53 | 54 | "conditional-type-checks": "^1.0.6", |
|
70 | 71 | "react-fontawesome-svg-icon": "^1.1.2", |
71 | 72 | "react-hotkeys-hook": "latest", |
72 | 73 | "tauri-plugin-store-api": "git+https://github.com/tauri-apps/tauri-plugin-store", |
| 74 | + "throttle-debounce": "^5.0.2", |
73 | 75 | "tslib": "latest", |
74 | 76 | "vite-plugin-eslint": "^1.8.1", |
75 | 77 | "vitest": "latest" |
|
0 commit comments