-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.18 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "valence",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"test:ci": "pnpm -r --workspace-concurrency=4 run test",
"lint": "eslint .",
"typecheck": "pnpm build",
"validate": "pnpm typecheck && pnpm lint",
"prepare": "husky",
"test:integration": "vitest run tests/integration/",
"test:e2e": "playwright test",
"test:coverage": "vitest run --coverage",
"test:mutate": "stryker run",
"test:smoke": "pnpm test",
"test:regression": "pnpm test",
"test:quarantine": "vitest run --reporter=verbose --tags-filter=flaky",
"test:watch": "vitest --watch",
"check:patterns": "bash scripts/check-banned-patterns.sh",
"check:tdd-sequence": "bash scripts/check-tdd-commit-sequence.sh branch",
"check:size": "bash scripts/check-bundle-size.sh",
"test:visual": "playwright test tests/e2e/visual/",
"test:visual:ci": "bash scripts/run-visual-ci.sh",
"test:perf:smoke": "k6 run tests/perf/smoke.js",
"test:perf": "k6 run tests/perf/load.js",
"test:lighthouse": "lhci autorun --config=lighthouserc.cjs",
"test:flaky:detect": "bash scripts/detect-flaky-vitest.sh && playwright test --config=tests/e2e/flaky-detection.config.ts",
"test:flaky:deadlines": "bash scripts/check-flaky-deadlines.sh",
"api:check": "bash scripts/api-check.sh",
"api:update": "bash scripts/api-update.sh",
"ci:local": "bash scripts/run-local-ci.sh",
"db:up": "docker compose -f docker-compose.dev.yml up -d",
"db:down": "docker compose -f docker-compose.dev.yml down",
"db:reset": "docker compose -f docker-compose.dev.yml down -v",
"db:logs": "docker compose -f docker-compose.dev.yml logs -f postgres"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@microsoft/api-extractor": "^7.57.7",
"@playwright/test": "^1.58.2",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@testcontainers/postgresql": "^11.13.0",
"@types/supertest": "^7.2.0",
"@valencets/cms": "workspace:*",
"@valencets/core": "workspace:*",
"@valencets/db": "workspace:*",
"@valencets/graphql": "workspace:*",
"@valencets/plugin-cloud-storage": "workspace:*",
"@valencets/plugin-nested-docs": "workspace:*",
"@valencets/plugin-seo": "workspace:*",
"@valencets/resultkit": "^0.2.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.22.0",
"happy-dom": "^20.8.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"msw": "^2.12.13",
"neostandard": "^0.13.0",
"postgres": "^3.4.8",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"argon2",
"msw"
],
"overrides": {
"flatted": ">=3.4.2",
"fast-xml-parser": ">=5.5.7"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/valencets/valence.git"
},
"homepage": "https://github.com/valencets/valence#readme",
"bugs": {
"url": "https://github.com/valencets/valence/issues"
}
}