-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.32 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
{
"name": "presentation",
"private": true,
"repository": {
"url": "https://github.com/iTwin/presentation.git"
},
"packageManager": "pnpm@11.1.0",
"engines": {
"node": "^24.0.0"
},
"scripts": {
"start:web": "run-p --silent start:frontend start:web-backend",
"start:electron": "run-p --silent start:frontend start:electron-backend",
"start:frontend": "npm run start --prefix ./apps/test-app/frontend",
"start:web-backend": "npm run start --prefix ./apps/test-app/backend",
"start:electron-backend": "npm run start:electron --prefix ./apps/test-app/backend",
"build:all": "lage build",
"build:test-app": "lage build --to @test-app/*",
"clean:all": "lage clean",
"docs:all": "lage docs",
"cover:all": "lage cover --continue",
"lint:all": "lage lint --continue",
"lint:copyright": "node scripts/copyrightLinter.js",
"gather-docs": "node ./scripts/gatherDocs.js",
"update-extractions": "npm run docs:all && npm run gather-docs && lage update-extractions",
"check-extractions": "npm run docs:all && npm run gather-docs && lage check-extractions",
"validate-markdowns": "lage validate-markdowns --grouped --continue",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"prepare": "husky",
"change": "changeset add",
"change:empty": "changeset add --empty",
"cspell": "cspell .",
"check": "changeset status",
"release": "npm run build:all && changeset publish",
"benchmark:hierarchies": "pnpm run -C ./apps/performance-tests benchmark:hierarchies",
"benchmark:unified-selection": "pnpm run -C ./apps/performance-tests benchmark:unified-selection"
},
"dependencies": {
"@changesets/cli": "^2.31.0",
"@stylistic/eslint-plugin": "^5.10.0",
"cpx2": "catalog:build-tools",
"cspell": "^9.8.0",
"eslint": "catalog:build-tools",
"eslint-config-prettier": "^9.1.2",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"lage": "^2.15.16",
"lint-staged": "^15.5.2",
"markdown-link-check": "^3.14.2",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.47.0",
"rimraf": "catalog:build-tools",
"yaml": "^2.9.0",
"yargs": "^17.7.3"
},
"lint-staged": {
"./{apps,packages}/**/*.{tsx,ts,jsx,js,scss,css,html}": [
"pnpm lint:copyright --fix"
],
"./scripts/*.js": [
"pnpm lint:copyright --fix"
]
}
}