forked from superset-sh/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.19 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
{
"name": "@superset/repo",
"version": "0.0.0",
"repository": {
"type": "git"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"dotenv-cli": "^11.0.0",
"sherif": "^1.10.0",
"turbo": "^2.8.7"
},
"description": "Superset Monorepo",
"homepage": "https://superset.sh",
"license": "Apache-2.0",
"packageManager": "bun@1.3.6",
"private": true,
"scripts": {
"dev": "turbo run dev dev:caddy --filter=@superset/api --filter=@superset/web --filter=@superset/desktop --filter=electric-proxy --filter=//",
"dev:all": "turbo dev",
"dev:caddy": "dotenv -- caddy run --config Caddyfile",
"dev:docs": "turbo dev --filter=@superset/docs",
"dev:marketing": "turbo dev --filter=@superset/marketing --filter=@superset/docs",
"build": "turbo build --filter=@superset/desktop",
"test": "turbo test",
"lint": "./scripts/lint.sh",
"check:desktop-git-env": "./scripts/check-desktop-git-env.sh",
"lint:fix": "bunx @biomejs/biome@2.4.2 migrate --write && bunx @biomejs/biome@2.4.2 check --write --unsafe .",
"format": "bunx @biomejs/biome@2.4.2 format --write .",
"format:check": "bunx @biomejs/biome@2.4.2 format .",
"typecheck": "turbo typecheck",
"ui-add": "turbo run ui-add",
"postinstall": "./scripts/postinstall.sh",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"release:desktop": "./apps/desktop/create-release.sh",
"release:canary": "./scripts/release-canary.sh",
"db:push": "bun run --cwd packages/db push",
"db:migrate": "bun run --cwd packages/db migrate",
"db:generate:desktop": "bun run --cwd packages/local-db generate"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*",
"tooling/*"
],
"resolutions": {
"mastracode": "https://github.com/superset-sh/mastra/releases/download/mastracode-v0.4.0-superset.12/mastracode-0.4.0-superset.12.tgz",
"@mastra/core": "https://github.com/superset-sh/mastra/releases/download/mastracode-v0.4.0-superset.12/mastra-core-1.8.0-superset.1.tgz",
"@mastra/memory": "https://github.com/superset-sh/mastra/releases/download/mastracode-v0.4.0-superset.12/mastra-memory-1.5.2-superset.1.tgz"
},
"patchedDependencies": {
"@durable-streams/state@0.2.1": "patches/@durable-streams%2Fstate@0.2.1.patch"
}
}