-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "waldtex",
"version": "0.1.0",
"private": true,
"description": "A local, Markdown-first scientific document IDE. Obsidian-style editing. Overleaf-quality output.",
"license": "MIT",
"author": "StructuredLabs",
"repository": {
"type": "git",
"url": "https://github.com/StructuredLabs/waldtex.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "vite",
"dev:server": "tsx watch src/server/index.ts",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "npm run build && node dist/server/index.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
"test": "vitest run"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/language": "^6.10.0",
"@codemirror/search": "^6.5.0",
"@codemirror/state": "^6.5.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.35.0",
"@lezer/highlight": "^1.2.0",
"allotment": "^1.0.9",
"chokidar": "^4.0.0",
"codemirror": "^6.0.1",
"cors": "^2.8.5",
"d3-force": "^3.0.0",
"express": "^4.21.0",
"fuse.js": "^7.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"simple-git": "^3.27.0",
"ws": "^8.18.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/cors": "^2.8.17",
"@types/d3-force": "^3.0.10",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.13",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"eslint": "^9.0.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vitest": "^2.0.0"
}
}