-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.08 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.08 KB
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
{
"name": "fbi",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build:web": "VITE_VERSION=${VITE_VERSION:-$(git rev-parse --short HEAD 2>/dev/null || echo dev)} vite build",
"dev:web": "VITE_VERSION=${VITE_VERSION:-$(git rev-parse --short HEAD 2>/dev/null || echo dev)} vite",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.web.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"hooks:install": "git config core.hooksPath .githooks",
"e2e": "playwright test",
"e2e:install": "playwright install --with-deps chromium",
"lint": "eslint src/web",
"tauri:dev": "cd src/desktop && npx tauri dev",
"tauri:build": "cd src/desktop && npx tauri build"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.2",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@tauri-apps/api": "^2.10.1",
"@uiw/codemirror-themes": "^4.25.9",
"@uiw/react-codemirror": "^4.25.9",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/headless": "^6.0.0",
"@xterm/xterm": "^5.5.0",
"cmdk": "^1.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.14.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.19",
"axe-core": "^4.11.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"form-data": "^4.0.5",
"happy-dom": "^20.9.0",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^6.4.2",
"vitest": "^3.2.4",
"vitest-axe": "^0.1.0"
},
"engines": {
"node": ">=20"
}
}