forked from Nikaple/nest-typed-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.61 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nest-typed-config",
"version": "1.3.1",
"description": "Intuitive, type-safe configuration module for Nest framework",
"author": "Nikaple Zhou",
"license": "MIT",
"url": "https://github.com/Nikaple/nest-typed-config",
"homepage": "https://github.com/Nikaple/nest-typed-config",
"repository": {
"type": "git",
"url": "https://github.com/Nikaple/nest-typed-config"
},
"bugs": {
"url": "https://github.com/Nikaple/nest-typed-config/issues"
},
"scripts": {
"prepare": "husky install",
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"test:cov": "jest --runInBand --coverage",
"doc": "typedoc lib/index.ts --tsconfig tsconfig.build.json",
"lint": "eslint {lib/**/*.ts,tests/**/*.ts,examples/**/*.ts} --fix",
"lint:dontfix": "eslint {lib/**/*.ts,test/**/*.ts,examples/**/*.ts}",
"prepublish:npm": "npm run build",
"prerelease": "npm run build",
"release": "release-it"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cosmiconfig": "^7.0.0",
"debug": "^4.3.1",
"dotenv": "^9.0.0",
"dotenv-expand": "^5.1.0",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"parse-json": "^5.2.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-angular": "12.1.1",
"@nestjs/cli": "^7.6.0",
"@nestjs/common": "7.6.15",
"@nestjs/core": "7.6.15",
"@nestjs/platform-express": "^7.6.15",
"@nestjs/testing": "7.6.15",
"@release-it/conventional-changelog": "^2.0.1",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/jest": "26.0.23",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^7.10.14",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint": "7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "6.0.0",
"jest": "^27.0.0-next.9",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"release-it": "14.6.1",
"rimraf": "3.0.2",
"rxjs": "6.6.7",
"ts-jest": "^27.0.0-next.12",
"typedoc": "^0.20.36",
"typescript": "4.2.4"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}