-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "documents",
"private": true,
"version": "1.23.11",
"type": "module",
"description": "A client-only, statically-built web UI for every conversion and editing tool in the documents.js ecosystem.",
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.worker.json && vite build",
"preview": "vite preview",
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.worker.json && tsc -p tsconfig.node.json",
"lint": "eslint . --cache --max-warnings 0",
"test": "vitest run --project unit",
"test:watch": "vitest --project unit",
"test:coverage": "vitest run --project unit --coverage",
"test:e2e": "playwright test",
"prepare": "husky",
"release": "semantic-release"
},
"dependencies": {
"@mantine/core": "^9.5.1",
"@mantine/dropzone": "^9.5.1",
"@mantine/hooks": "^9.5.1",
"@mantine/notifications": "^9.5.1",
"@mantine/vanilla-extract": "^9.5.1",
"@orpc/client": "^1.14.15",
"@orpc/server": "^1.14.15",
"@tabler/icons-react": "^3.46.0",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "^1.170.23",
"@tanstack/react-table": "^9.1.0",
"@tanstack/react-virtual": "^3.14.9",
"@vanilla-extract/css": "^1.21.2",
"@vanilla-extract/dynamic": "^2.1.5",
"@vanilla-extract/recipes": "^0.5.7",
"dexie": "^4.4.4",
"dexie-react-hooks": "^4.4.0",
"documents.js": "^1.99.55",
"markdown-codec": "^1.3.22",
"odf.js": "^2.7.14",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@exadev/eslint-config": "^2.1.1",
"@playwright/test": "^1.62.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@tanstack/router-plugin": "^1.168.27",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/wicg-file-system-access": "^2023.10.7",
"@vanilla-extract/vite-plugin": "^5.2.6",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fake-indexeddb": "^6.2.5",
"globals": "^17.9.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"semantic-release": "^25.0.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.1",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
}
}