-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 968 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
35
36
37
38
39
{
"name": "codeflare-web-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint src/ --deny-warnings",
"lint:fix": "oxlint src/ --fix",
"knip": "knip"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@solidjs/router": "^0.16.1",
"@thisbeyond/solid-dnd": "^0.7.5",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"solid-js": "^1.9.12",
"zod": "^4.3.6"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.6.0",
"fast-check": "^4.7.0",
"jsdom": "^29.1.0",
"knip": "^6.11.0",
"oxlint": "^1.63.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.1.5"
}
}