-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.91 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
{
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "Multi-dimensional web-based image, mesh, and point set viewer",
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel run dev",
"dev:debug": "VITE_DEBUG=true pnpm -r --parallel run dev",
"build": "pnpm -r build",
"lint": "pnpm prettier --check . && pnpm eslint .",
"lint:fix": "pnpm prettier --write . && pnpm eslint --fix .",
"setup-micromamba": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path ./micromamba --init-shell none --create-environment true --environment-file environment.yml --log-level info --run-command \"clean -fya\"",
"start-hypha": "pnpm setup-micromamba && ./micromamba/micromamba run -r micromamba -n itk-viewer hypha --host=127.0.0.1 --port=37580",
"test": "pnpm test:downloadData && concurrently -n \"hypha,cypress\" --success first -k \"pnpm start-hypha\" \"pnpm cy:component\"",
"test:downloadData": "node test/downloadData.mjs",
"cy:watch": "cypress open --component -b chrome",
"cy:component": "cypress run --component",
"cy:component:chrome": "cypress run --component --browser chrome",
"clean": "git clean -fdx",
"ci:publish": "pnpm --filter=!vtk-js-transfer-function-example publish -r --access public"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@cypress/mount-utils": "^4.1.1",
"@eslint/js": "^9.4.0",
"@thewtex/setup-micromamba": "^1.9.7",
"@types/eslint__js": "^8.42.3",
"concurrently": "^8.2.2",
"cypress": "^13.11.0",
"cypress-ct-lit": "^0.4.1",
"eslint": "^9.4.0",
"follow-redirects": "^1.15.6",
"globals": "^15.4.0",
"lit": "^3.1.4",
"prettier": "^3.3.2",
"tar": "^7.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^7.13.0",
"vite": "^5.3.0",
"vite-plugin-static-copy": "^1.0.5"
},
"prettier": {
"singleQuote": true
}
}