forked from nestjs/config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "@nestjs/config",
"version": "0.0.1",
"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",
"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"
},
"dependencies": {
"dotenv": "8.2.0"
},
"devDependencies": {
"@hapi/joi": "16.1.8",
"@nestjs/common": "6.10.8",
"@nestjs/core": "6.10.8",
"@nestjs/platform-express": "6.10.8",
"@nestjs/testing": "6.10.8",
"@types/dotenv": "8.2.0",
"@types/hapi__joi": "16.0.4",
"@types/jest": "24.0.23",
"@types/lodash.get": "4.4.6",
"@types/node": "7.10.8",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"lodash.get": "4.4.2",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.0",
"rxjs": "6.5.3",
"ts-jest": "24.2.0",
"typescript": "3.7.3"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/config"
}
}