-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.8 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.8 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ultra-tracker",
"version": "1.0.3",
"description": "Track athlete times in ultra marathons.",
"main": "./out/main/index.js",
"author": {
"name": "Bridgerland Amateur Radio Club",
"url": "https://barconline.org"
},
"homepage": "https://github.com/barcradio/ultra-tracker",
"appId": "barcradio.ultra-tracker",
"license": "MIT",
"repository": {
"repository": {
"type": "git",
"url": "git+https://github.com/barcradio/ultra-tracker.git"
}
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"dev:watch": "electron-vite dev --watch",
"build": "npm run typecheck && electron-vite build",
"rebuild": ".\\node_modules\\.bin\\electron-rebuild.cmd",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"prepare": "husky"
},
"dependencies": {
"@blackglory/better-sqlite3-migrations": "^0.1.20",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@electron/rebuild": "^4.0.1",
"@tanstack/react-query": "^5.85.5",
"@tanstack/react-router": "^1.131.27",
"@tanstack/react-virtual": "^3.13.12",
"@tw-classed/react": "^1.8.0",
"@uidotdev/usehooks": "^2.4.1",
"ajv": "8.17.1",
"better-sqlite3": "^12.0.0",
"class-variance-authority": "^0.7.1",
"csv-parse": "^6.1.0",
"date-fns": "^4.1.0",
"electron-log": "^5.4.3",
"electron-store": "^8.2.0",
"electron-updater": "^6.6.2",
"focus-trap-react": "^11.0.4",
"object-hash": "^3.0.0",
"primereact": "^10.9.7",
"react-hook-form": "^7.62.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-toc": "^9.0.0",
"tailwind-merge": "^3.3.1",
"typeorm": "^0.3.26",
"ws": "^8.18.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/format": "^19.8.1",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tanstack/router-devtools": "^1.131.27",
"@tanstack/router-vite-plugin": "^1.131.27",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.3.0",
"@types/object-hash": "^3.0.6",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.0.1",
"autoprefixer": "^10.4.21",
"electron": "^37.5.1",
"electron-builder": "^26.0.12",
"electron-devtools-installer": "^4.0.0",
"electron-vite": "^4.0.0",
"eslint": "^9.33.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"is-core-module": "^2.16.1",
"node-abi": "^4.14.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"tw-colors": "^3.3.2",
"typescript": "^5.9.2",
"uuid": "^11.1.0",
"vite": "^7.1.3",
"vite-plugin-svgr": "^4.3.0"
}
}