-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.01 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
{
"name": "h5web",
"private": true,
"version": "17.0.0",
"description": "Web-based HDF5 file viewer",
"author": "European Synchrotron Radiation Facility",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/silx-kit/h5web"
},
"engines": {
"node": "24.x",
"pnpm": "11.x"
},
"packageManager": "pnpm@11.5.0",
"type": "module",
"scripts": {
"start": "pnpm --filter demo start",
"start:storybook": "pnpm --filter storybook start",
"build": "pnpm --filter demo build",
"build:storybook": "pnpm --filter storybook build",
"serve": "pnpm --filter demo serve",
"serve:storybook": "pnpm --filter storybook serve",
"packages": "pnpm --filter {packages/*} build",
"lint": "pnpm \"/^lint:/\"",
"lint:prettier": "prettier . --cache --check",
"lint:eslint": "pnpm -r --parallel lint:eslint",
"lint:tsc": "pnpm -r --parallel lint:tsc",
"lint:root:eslint": "eslint --max-warnings=0",
"lint:root:tsc": "tsc",
"test": "vitest",
"test:headless": "vitest --browser.headless",
"support:setup": "poetry -C support/sample install && poetry -C support/h5grove install",
"support:sample": "poetry -C support/sample run python create_h5_sample.py",
"support:h5grove": "poetry -C support/h5grove run python fastapi_app.py --basedir ../sample/dist",
"cypress": "cypress open --e2e",
"cypress:run": "cypress run --e2e",
"version": "pnpm -r sync-version && git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@esrf/eslint-config": "2.3.1",
"@simonsmith/cypress-image-snapshot": "10.0.4",
"@testing-library/cypress": "10.1.3",
"@types/node": "^24.13.2",
"@vitest/coverage-v8": "4.1.9",
"@vitest/ui": "4.1.9",
"cypress": "15.18.0",
"cypress-wait-for-stable-dom": "0.1.0",
"eslint": "9.39.4",
"playwright": "1.61.1",
"prettier": "3.9.4",
"typescript": "5.9.3",
"vitest": "4.1.9",
"vitest-fail-on-console": "0.10.1",
"wait-on": "9.0.10"
}
}