-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.99 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.99 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
{
"name": "tietracker",
"version": "2.1.0",
"description": "A simple, open source and free time tracking app.",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint",
"prettier": "prettier --write 'src/**/*.{ts,js,css,html,jsx,tsx}' && prettier --write 'public/workers/**/*.{ts,js,css,html,jsx,tsx}' && prettier --write '*.md'",
"postinstall": "jetifier",
"libs": "node scripts/download-libs.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"cap:ios": "npx cap add ios --packagemanager CocoaPods"
},
"dependencies": {
"@awesome-cordova-plugins/core": "^8.1.0",
"@awesome-cordova-plugins/file": "^8.1.0",
"@awesome-cordova-plugins/local-notifications": "^8.1.0",
"@awesome-cordova-plugins/social-sharing": "^8.1.0",
"@capacitor/android": "^8.1.0",
"@capacitor/core": "^8.1.0",
"@capacitor/ios": "^8.1.0",
"@capacitor/splash-screen": "^8.0.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@ionic/react": "^8.7.18",
"@ionic/react-router": "^8.7.18",
"@mui/icons-material": "^7.3.8",
"@mui/material": "^7.3.8",
"@mui/styles": "^6.4.8",
"@mui/x-date-pickers": "^8.27.2",
"cordova-plugin-badge": "^0.8.9",
"cordova-plugin-device": "^3.0.0",
"cordova-plugin-file": "^8.1.3",
"cordova-plugin-local-notification": "^1.2.3",
"cordova-plugin-x-socialsharing": "^6.0.4",
"date-fns": "^4.1.0",
"es6-promise-plugin": "^4.2.2",
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.2.1",
"idb-keyval": "^6.2.2",
"ionicons": "^8.0.13",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-redux": "^9.2.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"rxjs": "^7.8.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@capacitor/cli": "^8.1.0",
"@junobuild/config": "^2.11.0",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-redux": "^7.1.34",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/wicg-file-system-access": "^2023.10.7",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.3.0",
"jetifier": "^2.0.0",
"node-fetch": "^3.3.2",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"sass": "^1.97.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1"
},
"homepage": "https://tietracker.com",
"author": "David Dal Busco",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git://github.com/peterpeterparker/tietracker.git"
}
}