-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.86 KB
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
77
78
79
80
81
82
{
"name": "queryleaf-monorepo",
"version": "0.1.0",
"private": true,
"description": "SQL to MongoDB query translator",
"workspaces": [
"packages/*"
],
"scripts": {
"clean:lib": "rm -rf packages/lib/dist",
"clean:cli": "rm -rf packages/cli/dist",
"clean:server": "rm -rf packages/server/dist",
"clean:pg-server": "rm -rf packages/postgres-server/dist",
"clean": "yarn clean:lib && yarn clean:cli && yarn clean:server && yarn clean:pg-server",
"build:lib": "yarn workspace @queryleaf/lib build",
"build:cli": "yarn workspace @queryleaf/cli build",
"build:server": "yarn workspace @queryleaf/server build",
"build:pg-server": "yarn workspace @queryleaf/postgres-server build",
"build": "bin/run-all build",
"build:references": "tsc --build",
"test": "bin/run-all test",
"test:unit": "bin/run-all test:unit",
"test:integration": "bin/run-all test:integration",
"test:lib": "yarn workspace @queryleaf/lib test",
"test:lib:integration": "yarn workspace @queryleaf/lib test:integration",
"test:cli": "yarn workspace @queryleaf/cli test",
"test:server": "yarn workspace @queryleaf/server test",
"test:pg-server": "yarn workspace @queryleaf/postgres-server test",
"typecheck": "bin/run-all typecheck",
"lint": "bin/run-all lint",
"lint:fix": "bin/run-all lint:fix",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"format:check": "prettier --check \"packages/*/src/**/*.ts\"",
"validate": "yarn typecheck && yarn lint && yarn test && yarn format:check",
"docs:serve": "mkdocs serve",
"docs:build": "pip install -r requirements.txt && mkdocs build"
},
"keywords": [
"sql",
"mongodb",
"compiler",
"query",
"cli",
"server"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/beekeeper-studio/queryleaf.git"
},
"bugs": {
"url": "https://github.com/beekeeper-studio/queryleaf/issues"
},
"homepage": "https://github.com/beekeeper-studio/queryleaf#readme",
"devDependencies": {
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.8.2"
},
"resolutions": {
"follow-redirects": "^1.16.0",
"qs": "^6.14.2",
"diff": "^4.0.4",
"lodash": "^4.18.1",
"path-to-regexp": "0.1.13",
"glob/minimatch": "^3.1.5",
"test-exclude/minimatch": "^3.1.5",
"eslint/minimatch": "^3.1.5",
"@eslint/eslintrc/minimatch": "^3.1.5",
"@humanwhocodes/config-array/minimatch": "^3.1.5",
"jake/minimatch": "^3.1.5",
"filelist/minimatch": "^5.1.9",
"readdir-glob/minimatch": "^5.1.9",
"archiver-utils/minimatch": "^9.0.9",
"@typescript-eslint/typescript-estree/minimatch": "^9.0.9",
"jackspeak/minimatch": "^9.0.9"
}
}