forked from wisewolf-oss/nestjs-bufconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.19 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-bufconnect",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"commit": "commit",
"test": "nx run-many --target=test --all --parallel"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt-cli": "^17.5.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nrwl/cli": "^15.8.9",
"@nrwl/eslint-plugin-nx": "15.8.9",
"@nrwl/jest": "15.8.9",
"@nrwl/js": "15.8.9",
"@nrwl/linter": "15.8.9",
"@nrwl/nest": "^15.8.9",
"@nrwl/nx-cloud": "latest",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@theunderscorer/nx-semantic-release": "^2.2.1",
"@types/jest": "^29.4.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "~8.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-file-progress": "^1.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^46.0.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"lint-staged": "^13.2.0",
"nx": "15.8.9",
"prettier": "^2.6.2",
"rollup": "^3.20.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-node-externals": "^5.1.2",
"selfsigned": "^2.1.1",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"tslib": "^2.3.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"eslint"
]
}
},
"engines": {
"pnpm": ">= 7",
"node": ">= v18.5.0"
}
}