-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 871 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 871 Bytes
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
{
"name": "mauve-viewer",
"version": "0.6.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.server.json",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"serve": "npm run build && node dist/server/index.js",
"start": "node dist/server/index.js",
"lint": "eslint .",
"test": "vitest run"
},
"devDependencies": {
"@eslint/js": "~10.0.1",
"@types/d3": "~7.4.3",
"@types/node": "~25.6.0",
"@vitest/coverage-v8": "~4.1.5",
"eslint": "~10.1.0",
"jsdom": "~29.0.1",
"typescript": "~6.0.2",
"typescript-eslint": "~8.57.2",
"vite": "~8.0.10",
"vitest": "~4.1.5"
},
"dependencies": {
"@fastify/static": "~9.1.1",
"@fastify/websocket": "~11.2.0",
"d3": "~7.9.0",
"fastify": "~5.8.5"
}
}