forked from silx-kit/h5web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.53 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
78
79
80
81
{
"name": "h5web",
"private": true,
"version": "12.0.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": "9.x"
},
"packageManager": "pnpm@9.0.6",
"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",
"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.1.0",
"@testing-library/cypress": "10.0.2",
"@types/node": "^20.12.11",
"cypress": "13.13.2",
"cypress-wait-for-stable-dom": "0.1.0",
"eslint": "8.57.0",
"eslint-config-galex": "4.5.2",
"prettier": "3.3.3",
"typescript": "5.4.5",
"vitest": "2.0.5",
"vitest-fail-on-console": "0.7.0",
"wait-on": "7.2.0"
},
"pnpm": {
"packageExtensions": {
"@typescript-eslint/eslint-plugin": {
"dependencies": {
"typescript": "5.0.3"
}
},
"eslint-plugin-tailwindcss": {
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
}
}
},
"peerDependencyRules": {
"allowedVersions": {
"@phenomnomnominal/tsquery>typescript": "5.x",
"eslint-plugin-etc>typescript": "5.x"
}
},
"requiredScripts": [
"lint:eslint",
"lint:tsc"
]
}
}