-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.29 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
{
"author": "Bert0ns <bert0ns@example.com>",
"desktopName": "GpxPlotter",
"name": "gpx-plotter",
"version": "1.0.2",
"private": true,
"main": "main.js",
"description": "gpx parser and plotter",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"electron-dev": "electron .",
"electron-build": "electron-builder --linux --win",
"build:all": "next build && electron-builder --linux --win",
"prepare": "husky",
"format": "prettier --write .",
"test": "vitest run --coverage"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@radix-ui/react-slot": "^1.2.5",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"chart.js": "^4.5.1",
"chartjs-plugin-datalabels": "^2.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-serve": "^3.0.1",
"gpxparser": "^3.0.8",
"lucide-react": "^1.17.0",
"next": "^16.2.7",
"react": "^19.2.7",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.8",
"electron": "^42.3.3",
"electron-builder": "^26.15.0",
"eslint": "^9.39.4",
"eslint-config-next": "^15.1.6",
"fallow": "^2.89.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"postcss": "^8.5.15",
"postcss-load-config": "^6.0.1",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": "22.x"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
],
"*.ts?(x)": [
"bash -c 'pnpm tsc --noEmit'"
]
},
"packageManager": "pnpm@11.5.2"
}