-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "@microfleet/clickhouse-root",
"license": "MIT",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/**/*",
"test"
],
"scripts": {
"commit": "git-cz",
"clean": "lerna run clean",
"compile": "yarn clean && lerna run compile",
"lint": "eslint . --ext .ts",
"typecheck": "lerna run typecheck",
"pretypecheck": "yarn compile",
"format": "prettier \"**/*.ts\" --write && git status",
"test": "yarn compile && lerna run test --stream",
"prepublishOnly": "yarn compile",
"semantic-release": "semantic-release",
"prepare": "mdep install"
},
"keywords": [
"clickhouse",
"adapter",
"client"
],
"devDependencies": {
"@makeomatic/deploy": "12.10.3",
"@types/bluebird": "3.5.38",
"@types/jest": "29.5.1",
"@types/lodash": "4.14.194",
"@types/node": "20.2.1",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"commitizen": "4.3.0",
"cross-env": "7.0.3",
"cz-lerna-changelog": "2.0.3",
"eslint": "8.41.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-makeomatic": "^5.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lerna": "6.6.2",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}