forked from AvaPrime/echoforge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.7 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
{
"name": "echoforge",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@9.14.4",
"workspaces": [
"apps/*",
"packages/*",
"e2e"
],
"scripts": {
"bootstrap": "pnpm install --frozen-lockfile",
"dev": "turbo dev",
"prebuild": "node scripts/find-deep-imports.mjs && node scripts/check-exports.mjs",
"build": "turbo run build --filter=!@echoforge/codalism",
"clean": "turbo run clean --parallel",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck --filter=!@echoforge/codalism",
"test": "turbo run test --filter=!@echoforge/codalism",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:enhanced": "vitest run --config config/vitest.enhanced.mjs",
"test:enhanced:coverage": "vitest run --config config/vitest.enhanced.mjs --coverage",
"test:enhanced:ui": "vitest --config config/vitest.enhanced.mjs --ui",
"test:integration": "vitest run --config config/vitest.enhanced.mjs packages/**/*.integration.test.ts",
"test:unit": "vitest run --config config/vitest.enhanced.mjs --reporter=verbose packages/**/*.test.ts --exclude=**/*.integration.test.ts",
"test:performance": "vitest run --config config/vitest.enhanced.mjs packages/**/*.perf.test.ts",
"test:watch": "vitest --config config/vitest.enhanced.mjs",
"test:imports": "node scripts/test-imports.mjs",
"check:deps": "npx knip --reporter json",
"e2e": "playwright test --config e2e/playwright.config.ts",
"e2e:headed": "playwright test --config e2e/playwright.config.ts --headed",
"e2e:ui": "playwright test --config e2e/playwright.config.ts --ui",
"check:env": "bash ./scripts/check-env.sh",
"prepare": "husky install",
"prettier": "prettier --write .",
"format": "prettier --write .",
"release": "changeset version && pnpm -w install && turbo run build && changeset publish",
"postinstall": "bash ./scripts/check-env.sh || true && pnpm -F @echoforge/env-check run check || true",
"test:env-check": "pnpm -F @echoforge/env-check run test",
"init:env-check": "node scripts/init-env-check.js"
},
"engines": {
"node": ">=20.11 || >=22",
"pnpm": ">=9"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.33.0",
"@playwright/test": "^1.54.2",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"knip": "^5.52.0",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"tsup": "^8.0.2",
"turbo": "^2.5.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}