-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 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
{
"name": "hatch-sh",
"private": true,
"type": "module",
"packageManager": "pnpm@9.10.0",
"scripts": {
"dev": "cd apps/desktop && pnpm tauri dev",
"build": "turbo build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:critical-flows": "playwright test -c testing/e2e/playwright.config.ts",
"dev:api": "turbo dev --filter=hatch-api",
"dev:desktop": "cd apps/desktop && pnpm tauri dev",
"build:desktop": "cd apps/desktop && pnpm tauri build",
"ci": "pnpm lint && pnpm typecheck && pnpm build && pnpm test",
"test:e2e:desktop": "playwright test -c testing/e2e/playwright.config.ts"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "1.57.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^24.0.0",
"playwright": "^1.57.0",
"prettier": "^3.2.0",
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
}
}