forked from nestjs/config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.12 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
{
"name": "@nestjs/config",
"version": "0.5.0",
"description": "Nest - modern, fast, powerful node.js web framework (@config)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"url": "https://github.com/nestjs/config#readme",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand",
"prerelease": "npm run build",
"release": "release-it"
},
"dependencies": {
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"uuid": "8.3.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@hapi/joi": "17.1.1",
"@nestjs/common": "7.4.4",
"@nestjs/core": "7.4.4",
"@nestjs/platform-express": "7.4.4",
"@nestjs/testing": "7.4.4",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.15",
"@types/lodash.get": "4.4.6",
"@types/lodash.set": "4.3.6",
"@types/node": "7.10.8",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.5.0",
"@typescript-eslint/parser": "4.5.0",
"eslint": "7.12.0",
"eslint-config-prettier": "6.14.0",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.0",
"jest": "26.6.1",
"lint-staged": "10.4.2",
"prettier": "2.1.2",
"reflect-metadata": "0.1.13",
"release-it": "14.2.0",
"rimraf": "3.0.2",
"rxjs": "6.6.3",
"ts-jest": "26.4.2",
"typescript": "4.0.3"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/config"
}
}