forked from silx-kit/h5web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
{
"name": "h5web",
"private": true,
"version": "7.0.0-beta.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": "16.x",
"pnpm": "7.x"
},
"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": "run-p lint:**",
"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",
"prettier": "prettier . --cache --check",
"test": "jest",
"cypress": "cypress open --e2e --browser firefox",
"cypress:run": "cypress run --e2e",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@testing-library/cypress": "8.0.7",
"@types/cypress-image-snapshot": "3.1.6",
"@types/jest": "^29.2.3",
"@types/node": "^16.18.3",
"cypress": "11.2.0",
"cypress-image-snapshot": "4.0.1",
"cypress-wait-for-stable-dom": "0.1.0",
"eslint": "8.27.0",
"eslint-config-galex": "4.4.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.3.1",
"jest-transform-stub": "2.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"pnpm": {
"overrides": {
"eslint": ">=8",
"react-scripts>eslint-plugin-testing-library": ">=5",
"react-scripts>@typescript-eslint/parser": ">=5",
"react-scripts>@typescript-eslint/eslint-plugin": ">=5"
},
"peerDependencyRules": {
"allowedVersions": {
"cypress": "*",
"jest": "*"
},
"ignoreMissing": [
"require-from-string"
]
},
"requiredScripts": [
"lint:eslint",
"lint:tsc"
]
}
}