-
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.45 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.45 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": "backupctl",
"version": "0.1.24",
"description": "Backup orchestration for databases, files, or both",
"engines": {
"node": ">=20.0.0 <22"
},
"author": "Vineeth N K",
"private": true,
"license": "MIT",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"lint:check": "eslint \"{src,test}/**/*.ts\"",
"lint:strict": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:dead-code": "knip",
"lint:duplicates": "jscpd ./src",
"analyze": "npm run lint:check && npm run lint:dead-code && npm run lint:duplicates",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.config.ts",
"prepare": "husky || true",
"commitlint": "commitlint --edit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@nestjs/common": "^11.1.19",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.19",
"@nestjs/platform-express": "^11.1.19",
"@nestjs/schedule": "^6.1.0",
"@nestjs/typeorm": "^11.0.1",
"axios": "^1.15.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"helmet": "^8.1.0",
"js-yaml": "^4.1.0",
"nest-commander": "^3.20.0",
"nest-winston": "^1.10.0",
"nodemailer": "^8.0.5",
"pg": "^8.13.0",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.0",
"typeorm": "^0.3.20",
"uuid": "^11.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"@nestjs/cli": "^11.0.19",
"@nestjs/schematics": "^11.0.10",
"@nestjs/testing": "^11.1.19",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/nodemailer": "^8.0.0",
"@types/uuid": "^10.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jscpd": "^4.0.9",
"knip": "^5.88.0",
"nest-commander-testing": "^3.5.1",
"prettier": "^3.8.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.2",
"vitepress": "^1.6.4"
}
}