-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.9 KB
/
package.json
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
{
"name": "redmine-time-tracking",
"description": "Redmine Time Tracking",
"version": "1.20.2",
"author": {
"name": "CrawlerCode",
"email": "[email protected]"
},
"repository": {
"type": "github",
"url": "https://github.com/CrawlerCode/redmine-time-tracking"
},
"type": "module",
"scripts": {
"dev:chrome": "tsc && cross-env PLATFORM=chrome vite build --watch --mode development",
"dev:firefox": "tsc && cross-env PLATFORM=firefox vite build --watch --mode development",
"build": "pnpm run build:chrome && pnpm run build:firefox",
"build:chrome": "tsc && cross-env PLATFORM=chrome vite build",
"build:firefox": "tsc && cross-env PLATFORM=firefox vite build",
"release": "gh release create v%npm_package_version% --notes-file release_notes.md --generate-notes",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"test": "playwright test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@tanstack/query-async-storage-persister": "^5.62.7",
"@tanstack/react-query": "^5.62.7",
"@tanstack/react-query-devtools": "^5.62.7",
"@tanstack/react-query-persist-client": "^5.62.7",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"country-flag-icons": "^1.5.13",
"date-fns": "^3.6.0",
"deepmerge": "^4.3.1",
"flatpickr": "^4.6.13",
"formik": "^2.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-flatpickr": "^3.10.13",
"react-intl": "^7.0.4",
"react-router-dom": "^7.0.2",
"react-select": "^5.9.0",
"react-tooltip": "^5.28.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-shadow-fill": "^1.0.1",
"tailwindcss-text-fill": "^0.2.0",
"yup": "^1.5.0"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/react-flatpickr": "^3.8.11",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-tailwindcss": "^3.17.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-static-copy": "^2.2.0",
"vite-plugin-zip-pack": "^1.2.4"
},
"packageManager": "[email protected]"
}