-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "@pitgrap/time-tracking-app",
"version": "0.13.1",
"homepage": "https://pitgrap.github.io/time-tracking-app/",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc -b && vite build",
"deploy": "pnpm build && gh-pages -d dist",
"lint": "eslint ."
},
"engines": {
"pnpm": "10",
"node": "24"
},
"dependencies": {
"i18next": "^26.0.8",
"i18next-browser-languagedetector": "^8.2.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.4",
"react-time-picker": "^8.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"gh-pages": "^6.3.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}