smartclickhouse/package.json

45 lines
1.2 KiB
JSON
Raw Normal View History

2022-03-01 14:03:55 +00:00
{
"name": "@pushrocks/smartclickhouse",
2022-03-14 12:54:10 +00:00
"version": "1.0.12",
2022-03-01 14:03:55 +00:00
"private": false,
"description": "an odm for talking to clickhouse",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-03-02 15:44:09 +00:00
"build": "(tsbuild --web)",
"createGrafana": "docker run --name grafana -d -p 4000:3000 grafana/grafana-oss",
"createClickhouse": "docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 -p 9000:9000 --volume=$PWD/.nogit/testdatabase:/var/lib/clickhouse yandex/clickhouse-server"
2022-03-01 14:03:55 +00:00
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^1.0.78",
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^4.0.8",
"@types/node": "^17.0.21",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
2022-03-07 14:49:47 +00:00
"@depyronick/clickhouse-client": "^1.0.12",
2022-03-14 12:52:42 +00:00
"@pushrocks/smartobject": "^1.0.10"
2022-03-01 14:03:55 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
}