-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "mabishion-ai",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "vitest run src/tests/",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri-dev": "tauri dev",
"test": "vitest run src/tests/",
"test:unit": "vitest run src/tests/unit/ src/tests/unit.test.js",
"test:integration": "vitest run src/tests/integration/",
"test:components": "vitest run src/tests/components/",
"test:e2e": "npx playwright test src/tests/e2e/",
"test:watch": "vitest src/tests/"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-sql": "^2.0.0",
"jspdf": "^4.2.1",
"jszip": "^3.10.1",
"puppeteer-core": "^24.42.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"reactflow": "^11.11.4",
"recharts": "^3.8.1"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.4.17",
"jsdom": "^29.1.1",
"playwright": "^1.61.1",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^8.1.4",
"vitest": "^4.1.9"
}
}