-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.41 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.41 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
93
94
95
96
{
"name": "@living-architecture/source",
"version": "0.0.0",
"license": "Apache-2.0",
"packageManager": "pnpm@10.28.0",
"scripts": {
"build": "nx run-many -t build",
"build:deploy": "cd packages/riviere-schema && npx tsc --build tsconfig.lib.json && cd ../riviere-query && npx tsc --build tsconfig.lib.json && cd ../../apps/docs && cp ../../packages/riviere-cli/docs/workflow/step-*.md extract/ai-assisted/ && cp ../../packages/riviere-cli/docs/generated/cli-reference.md reference/cli/cli-reference.md && NODE_OPTIONS='--max-old-space-size=4096' npx vitepress build && cd ../eclair && npx vite build && cd ../.. && rm -rf dist && mkdir -p dist/eclair && cp -r apps/docs/.vitepress/dist/* dist/ && cp -r apps/eclair/dist/* dist/eclair/",
"test": "nx run-many -t test",
"lint": "nx run-many -t lint",
"role-check": "nx run @living-architecture/source:role-check",
"typecheck": "nx run-many -t typecheck",
"knip": "knip",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
"depcruise": "depcruise --config .dependency-cruiser.mjs packages/*/src && depcruise --config .dependency-cruiser.frontend.mjs apps/eclair/src && depcruise --config .dependency-cruiser.specs.mjs packages/*/src apps/eclair/src",
"verify": "nx run-many -t lint-md role-check build depcruise lint typecheck test check-generated-docs knip --exclude=eclair",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"npx prettier --write",
"eslint --fix"
]
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@nx/esbuild": "22.5.2",
"@nx/eslint": "22.5.2",
"@nx/eslint-plugin": "^22.5.2",
"@nx/js": "22.5.2",
"@nx/vitest": "22.5.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@swc-node/register": "~1.11.0",
"@swc/core": "~1.15.0",
"@types/node": "^24.10.1",
"@typescript-eslint/rule-tester": "8.53.0",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/eslint-plugin": "^1.0.1",
"dependency-cruiser": "^17.3.7",
"esbuild": "^0.27.0",
"eslint": "^9.39.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"husky": "^9.1.7",
"knip": "^5.21.2",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"medium-zoom": "^1.1.0",
"nx": "22.5.2",
"oxlint": "^1.19.0",
"prettier": "^3.7.4",
"tslib": "^2.8.0",
"tsx": "^4.19.0",
"typedoc": "^0.28.15",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.50.1",
"verdaccio": "^6.0.5",
"vite": "^7.0.0",
"vitepress": "^1.5.0",
"vitest": "^4.0.8",
"vue": "^3.5.0",
"zod": "^4.3.5"
},
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"better-sqlite3",
"esbuild",
"nx",
"unrs-resolver"
],
"ignoredBuiltDependencies": []
}
}