forked from silx-kit/h5web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.37 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
{
"name": "h5web",
"private": true,
"version": "11.1.1",
"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": "8.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:cypress:tsc": "tsc --project cypress/tsconfig.json",
"lint:root:eslint": "eslint \"**/*.{js,cjs,ts,tsx}\" --max-warnings=0",
"test": "vitest",
"test:ui": "vitest --ui",
"support:setup": "poetry -C support/sample install && poetry -C support/h5grove install",
"support:sample": "poetry -C support/sample run python support/sample/create_h5_sample.py",
"support:h5grove": "poetry -C support/h5grove run python support/h5grove/tornado_app.py --basedir support/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.0.1",
"@testing-library/cypress": "10.0.1",
"@types/node": "^20.11.28",
"@vitest/ui": "1.3.1",
"cypress": "13.7.0",
"cypress-wait-for-stable-dom": "0.1.0",
"eslint": "8.57.0",
"eslint-config-galex": "4.5.2",
"prettier": "3.2.5",
"typescript": "5.0.4",
"vitest": "1.3.1",
"vitest-fail-on-console": "0.5.1",
"wait-on": "7.2.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@phenomnomnominal/tsquery>typescript": "5.x",
"eslint-plugin-etc>typescript": "5.x",
"react-aria-menubutton>react": "18.x",
"@vitejs/plugin-react>vite": "5.x"
}
},
"requiredScripts": [
"lint:eslint",
"lint:tsc"
]
}
}