-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "stackdrop",
"private": true,
"version": "2.1.2",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev:web": "vite --host 127.0.0.1 --port 1420",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"setup:cloud-agent": "./scripts/setup-cloud-agent-env.sh",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-sql": "^2.4.0",
"mammoth": "^1.12.0",
"pdfjs-dist": "^5.7.284",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.0",
"sql.js-fts5": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tauri-apps/cli": "^2.11.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react": "^6.0.1",
"better-sqlite3": "^12.9.0",
"cross-env": "^10.1.0",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"vite": "^8.0.12",
"vitest": "^4.1.6"
}
}