-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "nestjs-envalid",
"version": "3.0.0",
"description": "Envalid wrapper for NestJS validating and accessing environment variables!",
"repository": "github:simenandre/nestjs-envalid",
"license": "Apache-2.0",
"author": "Simen A. W. Olsen",
"type": "module",
"exports": "./dist/src/plugin.js",
"types": "./dist/src/plugin.d.ts",
"packageManager": "[email protected]",
"files": [
"./dist/src"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest --coverage",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"eslintConfig": {
"extends": "@bjerk/eslint-config",
"parserOptions": {
"project": true
}
},
"devDependencies": {
"@bjerk/eslint-config": "^4.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"dotenv": "^16.0.1",
"envalid": "^7.3.1",
"eslint": "^8.19.0",
"jest": "^29.0.0",
"lint-staged": "^13.0.3",
"prettier": "^3.0.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@nestjs/common": "<=10",
"@nestjs/core": "<=10",
"envalid": "7.x.x"
},
"engines": {
"node": ">=14.16"
}
}