-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.3 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.3 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
{
"name": "intake24-tasks",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@11.2.2",
"description": "Intake24 Tasks Service",
"author": "MRC Epidemiology Unit, University of Cambridge",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MRC-Epid-it24/tasks.git"
},
"engines": {
"node": ">=24"
},
"scripts": {
"build-only": "tsdown",
"build": "pnpm run typecheck && pnpm run build-only",
"start": "node dist/index.mjs",
"dev": "tsdown --watch --onSuccess \"pnpm run dev:start\"",
"dev:start": "concurrently -c blue,red --names SVC,TS \"node --trace-warnings --inspect=5959 ./dist/index.mjs\" \"pnpm run typecheck\"",
"cli": "node dist/cli.mjs",
"cli:dev": "unrun ./src/cli.ts",
"lint": "eslint . --fix",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@json2csv/formatters": "^7.0.6",
"@json2csv/node": "^7.0.6",
"axios": "^1.16.1",
"axios-retry": "^4.5.0",
"commander": "^14.0.3",
"date-fns": "^4.2.1",
"dotenv": "^17.4.2",
"dotenv-expand": "^13.0.0",
"execa": "^9.6.1",
"fast-csv": "^5.0.7",
"form-data": "^4.0.5",
"fs-extra": "^11.3.5",
"json5": "^2.2.3",
"lodash-es": "^4.18.1",
"ms": "^2.1.3",
"mssql": "^12.5.4",
"node-schedule": "^2.1.1",
"nodemailer": "^8.0.7",
"pg": "^8.21.0",
"pg-promise": "^12.6.2",
"ssh2-sftp-client": "^12.1.1",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@tsconfig/node24": "^24.0.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/ms": "^2.1.0",
"@types/mssql": "^12.3.0",
"@types/node": "^24.12.4",
"@types/node-schedule": "^2.1.8",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/ssh2-sftp-client": "^9.0.6",
"@typescript/native-preview": "7.0.0-dev.20260521.1",
"concurrently": "^9.2.1",
"eslint": "^10.4.0",
"eslint-plugin-format": "^2.0.1",
"lint-staged": "^17.0.5",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"unrun": "^0.3.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}