forked from jordanlambrecht/tracker-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.04 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.04 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
{
"name": "private-tracker-tracker",
"version": "2.8.9",
"description": "Self-hosted dashboard for monitoring private tracker stats over time",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jordanlambrecht/tracker-tracker.git"
},
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"argon2",
"esbuild",
"sharp"
],
"overrides": {
"esbuild": ">=0.25.0"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "pnpm tsc && biome check .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tsc": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"release": "commit-and-tag-version",
"release:patch": "commit-and-tag-version --release-as patch",
"release:minor": "commit-and-tag-version --release-as minor",
"release:major": "commit-and-tag-version --release-as major",
"changelog:regen": "node scripts/regen-changelog.cjs",
"knip": "knip",
"knip:filter": "knip --reporter json --no-exit-code | bash scripts/knip-filter.sh",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@formkit/auto-animate": "^0.9.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.97.0",
"argon2": "^0.44.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"echarts": "^6.0.0",
"echarts-for-react": "^3.0.6",
"echarts-gl": "^2.0.9",
"emoji-picker-react": "^4.18.0",
"https-proxy-agent": "^9.0.0",
"jose": "^6.2.2",
"next": "16.2.2",
"node-cron": "^4.2.1",
"node-html-parser": "^7.1.0",
"otpauth": "^9.5.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"postgres": "^3.4.9",
"qrcode.react": "^4.2.0",
"react": "19.2.5",
"react-colorful": "^5.6.1",
"react-dom": "19.2.5",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"socks-proxy-agent": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"commit-and-tag-version": "^12.7.1",
"conventional-changelog-cli": "^5.0.0",
"dotenv": "^17.4.1",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"knip": "^6.3.1",
"postcss": "^8.5.9",
"prettier": "^3.8.2",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}