-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
77 lines (77 loc) · 2.6 KB
/
package.json
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": "h5web",
"private": true,
"version": "13.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": "20.x",
"pnpm": "9.x"
},
"packageManager": "[email protected]",
"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",
"lint:cypress:tsc": "tsc --project cypress/tsconfig.json",
"test": "vitest",
"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 tornado_app.py --basedir ../sample/dist",
"cypress": "cypress open --e2e --browser firefox",
"cypress:run": "cypress run --e2e",
"version": "pnpm -r sync-version && git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@simonsmith/cypress-image-snapshot": "9.1.0",
"@stylistic/eslint-plugin-js": "2.12.1",
"@testing-library/cypress": "10.0.2",
"@types/node": "^20.17.12",
"@vitest/eslint-plugin": "1.1.20",
"confusing-browser-globals": "1.0.11",
"cypress": "13.13.2",
"cypress-wait-for-stable-dom": "0.1.0",
"eslint": "9.16.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "0.11.2",
"eslint-plugin-testing-library": "7.1.1",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.13.0",
"lodash": "4.17.21",
"prettier": "3.3.3",
"typescript": "5.7.3",
"typescript-eslint": "8.18.0",
"vitest": "2.0.5",
"vitest-fail-on-console": "0.7.0",
"wait-on": "7.2.0"
},
"pnpm": {
"requiredScripts": [
"lint:eslint",
"lint:tsc"
]
}
}