-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.12 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.12 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
{
"name": "loopautoma",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev:web": "vite",
"build": "tauri build",
"build:web": "tsc --noEmit --project tsconfig.app.json && vite build",
"build:web:dev": "tsc --noEmit --project tsconfig.app.json && vite build && bun run generate:ui-screenshot",
"preview": "vite preview",
"tauri": "tauri",
"test": "bun test tests/hello.bun.test.ts",
"test:ui": "vitest run",
"test:ui:cov": "vitest run --coverage",
"test:ui:watch": "vitest",
"test:all": "vitest run && playwright test",
"pre-release-check": "bun ./scripts/preReleaseCheck.ts",
"generate:ui-screenshot": "bun ./scripts/generateUiScreenshot.ts",
"test:e2e": "playwright test",
"test:e2e:cov": "bun ./scripts/cleanE2eCoverage.js && cross-env VITE_E2E_COVERAGE=1 PLAYWRIGHT_COVERAGE=1 playwright test && bun ./scripts/mergeE2eCoverage.js",
"test:e2e:report": "playwright show-report",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-istanbul": "^2.1.4",
"bun-types": "*",
"cross-env": "^10.1.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"jsdom": "^25.0.0",
"pixelmatch": "^7.1.0",
"playwright": "^1.56.1",
"pngjs": "^7.0.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-plugin-istanbul": "^7.2.1",
"vitest": "^2.1.4"
}
}