UNPKG

2.14 kBJSONView Raw
1{
2 "name": "@nestjs/config",
3 "version": "2.1.0",
4 "description": "Nest - modern, fast, powerful node.js web framework (@config)",
5 "author": "Kamil Mysliwiec",
6 "license": "MIT",
7 "url": "https://github.com/nestjs/config#readme",
8 "scripts": {
9 "build": "rimraf -rf dist && tsc -p tsconfig.json",
10 "format": "prettier --write \"{lib,test}/**/*.ts\"",
11 "lint": "eslint 'lib/**/*.ts' --fix",
12 "prepublish:npm": "npm run build",
13 "publish:npm": "npm publish --access public",
14 "prepublish:next": "npm run build",
15 "publish:next": "npm publish --access public --tag next",
16 "test:integration": "jest --config ./tests/jest-e2e.json --runInBand",
17 "prerelease": "npm run build",
18 "release": "release-it"
19 },
20 "dependencies": {
21 "dotenv": "16.0.1",
22 "dotenv-expand": "8.0.3",
23 "lodash": "4.17.21",
24 "uuid": "8.3.2"
25 },
26 "devDependencies": {
27 "@commitlint/cli": "17.0.2",
28 "@commitlint/config-angular": "17.0.0",
29 "@nestjs/common": "8.4.6",
30 "@nestjs/core": "8.4.6",
31 "@nestjs/platform-express": "8.4.6",
32 "@nestjs/testing": "8.4.6",
33 "@types/jest": "28.1.0",
34 "@types/lodash": "4.14.182",
35 "@types/node": "17.0.34",
36 "@types/uuid": "8.3.4",
37 "@typescript-eslint/eslint-plugin": "5.27.0",
38 "@typescript-eslint/parser": "5.27.0",
39 "eslint": "8.16.0",
40 "eslint-config-prettier": "8.5.0",
41 "eslint-plugin-import": "2.26.0",
42 "husky": "8.0.1",
43 "jest": "28.1.0",
44 "joi": "17.6.0",
45 "lint-staged": "13.0.0",
46 "prettier": "2.6.2",
47 "reflect-metadata": "0.1.13",
48 "release-it": "15.0.0",
49 "rimraf": "3.0.2",
50 "rxjs": "7.5.5",
51 "ts-jest": "28.0.3",
52 "typescript": "4.7.2"
53 },
54 "peerDependencies": {
55 "@nestjs/common": "^7.0.0 || ^8.0.0",
56 "reflect-metadata": "^0.1.13",
57 "rxjs": "^6.0.0 || ^7.2.0"
58 },
59 "lint-staged": {
60 "*.ts": [
61 "prettier --write"
62 ]
63 },
64 "husky": {
65 "hooks": {
66 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
67 "pre-commit": "lint-staged"
68 }
69 },
70 "repository": {
71 "type": "git",
72 "url": "https://github.com/nestjs/config"
73 }
74}