-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.53 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
{
"author": "tommelo",
"bugs": {
"url": "https://github.com/it-gorillaz/configify/issues"
},
"dependencies": {
"dotenv": "^17.3.1",
"js-yaml": "^4.1.1"
},
"description": "NestJS Config on Steroids",
"devDependencies": {
"@aws-sdk/client-secrets-manager": "^3.1002.0",
"@aws-sdk/client-ssm": "^3.1002.0",
"@azure/identity": "^4.13.0",
"@azure/keyvault-secrets": "^4.10.0",
"@bitwarden/sdk-napi": "^1.0.0",
"@google-cloud/secret-manager": "^6.1.1",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.15",
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "25.9.2",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "30.4.2",
"lint-staged": "^17.0.3",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-jest": "29.4.11",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^6.0.2"
},
"homepage": "https://github.com/it-gorillaz/configify#readme",
"jest": {
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"keywords": [
"nestjs",
"config",
"yml",
".env"
],
"license": "MIT",
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"name": "@itgorillaz/configify",
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0 || ^11.0.0",
"class-validator": "^0.14.0 || ^0.15.0",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"rxjs": "^7.2.0"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/it-gorillaz/configify.git"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky",
"test": "jest --config ./test/jest.config.json --coverage --silent=false --verbose --runInBand"
},
"version": "4.1.2"
}