-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.02 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.02 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
{
"name": "redmine-time-tracking",
"description": "Start-stop timer for Redmine",
"version": "2.0.0-beta.7",
"author": {
"name": "CrawlerCode",
"email": "crawlercode@outlook.de"
},
"repository": {
"type": "github",
"url": "https://github.com/CrawlerCode/redmine-time-tracking"
},
"type": "module",
"scripts": {
"postinstall": "wxt prepare",
"dev:chrome": "wxt -b chrome",
"dev:firefox": "wxt -b firefox --mv2",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox --mv3",
"build:chrome:pre-release": "cross-env NODE_ENV=production wxt zip -b chrome --mode pre-release",
"build:firefox:pre-release": "cross-env NODE_ENV=production wxt zip -b firefox --mv3 --mode pre-release",
"build:chrome:release": "cross-env NODE_ENV=production wxt zip -b chrome --mode release",
"build:firefox:release": "cross-env NODE_ENV=production wxt zip -b firefox --mv3 --mode release",
"format": "prettier --write .",
"lint:all": "pnpm run lint:eslint && pnpm run lint:ts && pnpm run lint:stylelint && pnpm run lint:htmlhint && pnpm run lint:lang && pnpm run lint:react-doctor",
"lint:eslint": "eslint --fix src tests",
"lint:ts": "tsc --noEmit",
"lint:stylelint": "stylelint --fix src/**/*.css",
"lint:htmlhint": "pnpx htmlhint --config .github/linters/.htmlhintrc src/**/*.html",
"lint:lang": "formatjs verify --source-locale en --missing-keys src/lang/*.json",
"lint:react-doctor": "pnpx react-doctor@latest -y --verbose .",
"test": "playwright test",
"test:update-snapshots": "playwright test --update-snapshots=changed",
"generate-store-screenshots": "tsx screenshots/generate-store-screenshots.ts",
"release": "semantic-release"
},
"dependencies": {
"@base-ui/react": "^1.4.0",
"@tanstack/query-async-storage-persister": "^5.99.0",
"@tanstack/react-form": "^1.29.0",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-query-devtools": "^5.99.0",
"@tanstack/react-query-persist-client": "^5.99.0",
"@tanstack/react-router": "^1.168.22",
"axios": "^1.15.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"country-flag-icons": "^1.6.16",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"lucide-react": "^1.8.0",
"qs": "^6.15.1",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-intl": "^10.1.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@formatjs/cli": "^6.14.2",
"@playwright/test": "^1.59.1",
"@rolldown/plugin-babel": "^0.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/eslint-plugin-query": "^5.99.0",
"@tanstack/eslint-plugin-router": "^1.161.6",
"@tanstack/router-plugin": "^1.167.22",
"@types/chrome": "^0.1.40",
"@types/node": "^24.12.2",
"@types/qs": "^6.15.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "1.0.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-tailwindcss": "^3.18.3",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"semantic-release": "^25.0.3",
"shadcn": "^4.3.0",
"sharp": "^0.34.5",
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.8",
"wxt": "^0.20.25"
},
"packageManager": "pnpm@10.33.0"
}