-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
66 lines (66 loc) · 2 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
{
"name": "nestjs-spelunker",
"version": "1.3.1",
"description": "A NestJS Module to do a deep dive through the dependency tree structure and print the dependencies.",
"author": {
"name": "Jay McDoniel",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"preversion": "yarn format && yarn lint && yarn build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"commit": "git-cz",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"test": "c8 uvu -r ts-node/register test 'index\\.spec\\.ts$'"
},
"devDependencies": {
"@changesets/cli": "^2.21.1",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nestjs/cli": "^8.2.3",
"@nestjs/common": "^8.4.1",
"@nestjs/core": "^8.4.1",
"@nestjs/platform-express": "^8.4.1",
"@nestjs/schematics": "^8.0.8",
"@nestjs/testing": "^8.4.1",
"@ogma/nestjs-module": "^3.2.0",
"@types/express": "^4.17.2",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"c8": "^7.11.0",
"conventional-changelog-cli": "^2.0.31",
"cz-conventional-changelog": "^3.1.0",
"dequal": "^2.0.2",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"express": "^4.17.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"ts-node": "^10.9.1",
"typescript": "^4.6.2",
"uvu": "^0.5.3"
},
"peerDependencies": {
"@nestjs/common": ">6.11.0",
"@nestjs/core": ">6.11.0",
"reflect-metadata": "^0.1.0"
},
"dependencies": {
"@ogma/styler": "^1.0.0"
}
}