-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "hexal",
"version": "1.3.0",
"description": "D&D Hex Crawl Campaign Manager",
"author": "Ryan Robson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ringo380/hexal.git"
},
"bugs": {
"url": "https://github.com/ringo380/hexal/issues"
},
"homepage": "https://github.com/ringo380/hexal#readme",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run build:web-player && electron-builder",
"build:mac": "tsc && vite build && npm run build:web-player && electron-builder --mac",
"build:web-player": "vite build --config vite.config.web-player.ts",
"preview": "vite preview",
"electron": "electron .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "node e2e/smoke.mjs",
"screenshots": "node e2e/capture-screenshots.mjs"
},
"dependencies": {
"@clerk/react": "^6.0.1",
"@supabase/supabase-js": "^2.97.0",
"dexie": "^4.3.0",
"electron-store": "^8.1.0",
"jspdf": "^4.2.0",
"uuid": "^9.0.0",
"ws": "^8.19.0"
},
"overrides": {
"esbuild": "^0.25.0",
"tar": "^7.5.8",
"lodash": "^4.17.23",
"minimatch": "^10.2.1",
"glob": "^11.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.2.0",
"electron": "^35.7.5",
"electron-builder": "^26.8.1",
"jsdom": "^28.0.0",
"playwright": "^1.58.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.0",
"vitest": "^4.0.18"
}
}