-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.55 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.55 KB
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
{
"name": "ph7-console-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:appstore": "./scripts/build-appstore.sh",
"tauri:upload:appstore": "./scripts/upload-appstore.sh",
"appstore": "npm run tauri:build:appstore && npm run tauri:upload:appstore",
"setup": "./setup.sh",
"install:deps": "npm install && cd src-tauri && cargo check",
"test": "npm run test:unit && npm run test:integration && npm run test:rust",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:ui": "vitest --ui",
"test:integration": "playwright test",
"test:integration:headed": "playwright test --headed",
"test:integration:debug": "playwright test --debug",
"test:rust": "cd src-tauri && cargo test",
"test:rust:verbose": "cd src-tauri && cargo test -- --nocapture",
"test:e2e": "npm run test:integration",
"test:all": "npm run test:unit && npm run test:integration && npm run test:rust",
"test:ci": "npm run test:unit && npm run test:integration:headed && npm run test:rust",
"clean": "rm -rf dist node_modules src-tauri/target && npm install"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"framer-motion": "^10.16.4",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.4.1",
"react-icons": "^5.5.0",
"react-markdown": "^8.0.7",
"zustand": "^4.4.1"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^26.1.0",
"playwright": "^1.55.0",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^3.2.4"
}
}