-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.26 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
{
"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": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.8.2"
}
}