forked from wsj-br/duplistatus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.65 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
{
"name": "duplistatus",
"version": "1.0.1",
"private": true,
"type": "module",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20.19.0",
"pnpm": ">=10.20.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "./scripts/pre-checks.sh && next build",
"lint": "pnpm exec eslint .",
"typecheck": "tsc --noEmit",
"start": "NODE_ENV=production HOSTNAME=0.0.0.0 PORT=9666 node duplistatus-server.ts",
"cron:start": "tsx src/cron-service/index.ts",
"dev": "./scripts/pre-checks.sh && PORT=8666 NEXT_TELEMETRY_DISABLED=1 next dev",
"cron:dev": "CRON_PORT=8667 tsx watch src/cron-service/index.ts",
"build-local": "./scripts/pre-checks.sh && next build",
"start-local": "./scripts/pre-checks.sh && NODE_ENV=production PORT=8666 CRON_PORT=8667 NEXT_TELEMETRY_DISABLED=1 tsx duplistatus-server.ts",
"cron:start-local": "NODE_ENV=production CRON_PORT=8667 tsx watch src/cron-service/index.ts",
"generate-test-data": "tsx scripts/generate-test-data.ts",
"show-overdue-notifications": "tsx scripts/show-overdue-notifications.ts",
"run-overdue-check": "tsx scripts/run-overdue-check.ts",
"test-cron-port": "tsx scripts/test-cron-port.ts",
"take-screenshots": "tsx scripts/take-screenshots.ts",
"set-smtp-test-config": "tsx scripts/set-smtp-test-config.ts",
"test-smtp-connections": "tsx scripts/test-smtp-connections.ts",
"docker-up": "./scripts/pre-checks.sh && docker compose up --build -d",
"docker-down": "docker compose down",
"docker-clean": "./scripts/clean-docker.sh"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.1.17",
"@types/bcrypt": "^6.0.0",
"@types/nodemailer": "^7.0.4",
"@types/qrcode": "^1.5.6",
"autoprefixer": "^10.4.22",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"lucide-react": "^0.556.0",
"next": "^16.1.5",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.11",
"qrcode": "^1.5.4",
"react": "^19.2.1",
"react-datepicker": "^8.10.0",
"react-day-picker": "^9.11.3",
"react-dom": "^19.2.1",
"react-hook-form": "^7.68.0",
"recharts": "^3.5.1",
"string-template": "^1.0.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"@types/node-cron": "^3.0.11",
"@types/react": "19.2.7",
"@types/string-template": "^1.0.7",
"baseline-browser-mapping": "latest",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.7",
"puppeteer": "^24.32.0",
"tsx": "^4.21.0",
"webpack": "^5.104.1"
}
}