-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.56 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
{
"name": "prof-test",
"version": "0.1.0",
"description": "Cross-platform LaTeX test generator (Tauri + Next.js)",
"packageManager": "bun@1.3.5",
"scripts": {
"build": "tsc && bun run renderer:build && bun run renderer:prepare",
"backend:dev": "bun run --watch src/backend.ts",
"dev": "bunx tauri dev",
"tauri": "tauri",
"renderer:build": "bunx next build src/renderer",
"renderer:dev": "bunx next dev src/renderer -p 3000",
"renderer:prepare": "node scripts/copy-renderer-out.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"vitest": {
"environment": "jsdom"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/adm-zip": "^0.5.7",
"@types/jsdom": "^28.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.10.1",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"jsdom": "^27.2.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"adm-zip": "^0.5.16",
"better-sqlite3": "^8.4.0",
"katex": "^0.16.22",
"markdown-it": "^14.1.0",
"markdown-it-katex": "^2.0.3",
"next": "canary",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"xlsx": "^0.18.5",
"yaml": "^2.6.1"
}
}