-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"dev": "concurrently \"pnpm run dev:vite\" \"pnpm run dev:proxy\"",
"dev:vite": "vite --port 5173",
"dev:proxy": "caddy run -w -c dev.Caddyfile --adapter caddyfile",
"build": "vite build",
"preview": "vite preview",
"fix": "biome check --apply src/",
"fix:unsafe": "biome check --apply-unsafe src/",
"fmt": "biome format --write src/"
},
"dependencies": {
"@niivue/niivue": "^0.39.0",
"@patternfly/react-core": "^5.1.1",
"@patternfly/react-icons": "^5.1.1",
"@patternfly/react-table": "^5.1.1",
"@preact/compat": "^17.1.2",
"immer": "^10.0.3",
"papaparse": "^5.4.1",
"preact": "^10.19.2"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@preact/preset-vite": "^2.7.0",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"eslint-config-preact": "^1.3.0",
"typescript": "^5.3.2",
"vite": "^5.0.6",
"vitest": "^1.0.1"
}
}