forked from depyronick/nestjs-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 772 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 772 Bytes
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
{
"name": "@depyronick/nestjs-clickhouse",
"version": "2.0.3",
"description": "ClickHouse Client Module for NestJS",
"main": "index.js",
"repository": "https://github.com/depyronick/nestjs-clickhouse",
"author": "Ali Demirci",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"postbuild": "cp package.json README.md dist/",
"publish:npm": "npm run build && cd ./dist && npm publish --access public"
},
"devDependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@types/node": "^18.14.0",
"rxjs": "^7.8.0",
"reflect-metadata": ">=0.1.13"
},
"peerDependencies": {
"@nestjs/common": ">=8.4.0"
},
"dependencies": {
"@depyronick/clickhouse-client": "^2.0.3"
}
}