-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.72 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nestjs-easyconfig",
"version": "2.8.0",
"description": "Add configs to nestjs with auto type parsing",
"keywords": [
"config",
"easyconfig",
"nestjs"
],
"bugs": "https://github.com/rubiin/nestjs-easyconfig/issues",
"license": "MIT",
"author": "Rubin Bhandari <roobin.bhandari@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/rubiin/nestjs-easyconfig"
},
"main": "dist/index.js",
"scripts": {
"commit": "npx cz",
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"postinstall": "npm run build",
"format": "oxfmt",
"format:check": "oxfmt --check **/*.ts",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test:watch": "jest --watch",
"test": "jest --config ./test/jest.json",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls"
},
"dependencies": {
"dotenv": "^17.4.2",
"dotenv-expand": "^13.0.0"
},
"devDependencies": {
"@nestjs/common": "^11.1.19",
"@nestjs/core": "^11.1.19",
"@nestjs/testing": "^11.1.19",
"@rubiin/tsconfig": "^2.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.39",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"reflect-metadata": "^0.1.14",
"rimraf": "^6.1.3",
"rxjs": "^7.8.2",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@nestjs/common": ">7.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,md,scss,yaml,yml}": [
"oxfmt --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"readmeFilename": "README.md"
}