-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 3.26 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
{
"name": "pluralscape-mono",
"private": true,
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"lint:loc": "eslint --config eslint.loc.config.js --max-warnings 0 apps packages",
"typecheck": "turbo typecheck",
"types:check-sot": "tsx scripts/check-types-sot.ts",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest run",
"test:unit": "vitest run --exclude '**/*.integration.{test,spec}.ts'",
"test:integration": "vitest run --passWithNoTests 'integration'",
"test:coverage": "vitest run --coverage",
"test:unit:coverage": "vitest run --exclude '**/*.integration.{test,spec}.ts' --coverage",
"test:watch": "vitest",
"test:e2e": "pnpm --filter @pluralscape/api-e2e exec playwright test --project=api",
"test:e2e:slow": "pnpm --filter @pluralscape/api-e2e exec playwright test --project=api-slow",
"test:e2e:all": "pnpm --filter @pluralscape/api-e2e exec playwright test",
"test:e2e:web": "pnpm --filter @pluralscape/mobile-web-e2e test",
"clean": "turbo clean",
"roadmap": "beans roadmap > docs/roadmap.md",
"codeql": "bash scripts/codeql/analyze.sh",
"openapi:lint": "redocly lint docs/openapi/openapi.yaml --config docs/openapi/redocly.yaml",
"openapi:bundle": "redocly bundle docs/openapi/openapi.yaml --config docs/openapi/redocly.yaml -o docs/openapi.yaml",
"openapi:check": "redocly bundle docs/openapi/openapi.yaml --config docs/openapi/redocly.yaml -o docs/openapi.yaml && tsx scripts/reconcile-openapi.ts",
"commitlint": "commitlint --from=origin/main --to=HEAD",
"knip": "knip --exclude exports --exclude types",
"scope:check": "tsx scripts/check-scope-coverage.ts",
"seed:pk-test": "tsx scripts/pk-seed/index.ts",
"seed:sp-test": "tsx scripts/sp-seed/index.ts",
"test:e2e:sp-import": "vitest run --config vitest.sp-e2e.config.ts",
"test:e2e:pk-import": "vitest run --config vitest.pk-e2e.config.ts",
"trpc:parity": "pnpm --filter @pluralscape/api trpc:parity",
"crowdin:setup": "tsx scripts/crowdin-setup-project.ts",
"crowdin:pretranslate": "tsx scripts/crowdin-pretranslate.ts",
"crowdin:upload-context": "tsx scripts/crowdin-upload-context.ts",
"crowdin:schema": "tsx scripts/generate-crowdin-glossary-schema.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@crowdin/crowdin-api-client": "^1.55.1",
"@pluralscape/eslint-config": "workspace:*",
"@pluralscape/prettier-config": "workspace:*",
"@pluralscape/tsconfig": "workspace:*",
"@redocly/cli": "^2.30.4",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"husky": "^9.1.7",
"knip": "^6.12.2",
"lint-staged": "^17.0.3",
"prettier": "^3.8.3",
"tsx": "^4.21.0",
"turbo": "^2.9.12",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"yaml": "^2.8.4",
"zod": "^4.4.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings 0 --no-warn-ignored"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"prettier": "@pluralscape/prettier-config",
"packageManager": "pnpm@11.0.9"
}