-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (73 loc) · 2.32 KB
/
package.json
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
{
"name": "@nestjs-library/config",
"version": "0.4.5",
"description": "A NestJS module for managing environment variables easily and securely.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/woowabros/nestjs-library-config"
},
"scripts": {
"test": "jest",
"type-check": "tsc -p tsconfig.lib.json --noEmit && tsc -p tsconfig.spec.json",
"format-check": "prettier --check \"**/*.+(ts|json|js)\"",
"format": "prettier --write --list-different .",
"lint": "eslint --ext .ts,.js .",
"build": "tsc -p tsconfig.lib.json",
"prepare": "husky install && chmod ug+x .husky/*",
"release": "release-it"
},
"keywords": [
"NestJS",
"Config",
"Environment Variables",
"Module"
],
"license": "MIT",
"dependencies": {
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.2.10",
"class-transformer": "0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"lodash": "4.17.21",
"reflect-metadata": "0.2.1",
"rxjs": "7.8.1",
"tslib": "2.7.0",
"typescript": "~5.7.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.0.3",
"@nestjs/platform-express": "^10.2.10",
"@nestjs/testing": "^10.2.10",
"@types/express": "^4.17.21",
"@types/jest": "29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.14.0",
"commitizen": "^4.3.0",
"commitlint": "^19.0.3",
"eslint": "~8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.0.10",
"jest": "29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2"
}
}