forked from dbeaver/cloudbeaver
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"name": "@cloudbeaver/product-default",
"type": "module",
"sideEffects": [
"./lib/module.js",
"./lib/index.js",
"src/**/*.ts",
"src/**/*.scss",
"public/**/*",
"src/**/*.css"
],
"version": "25.2.1",
"description": "CloudBeaver Community",
"license": "DBeaver Corp",
"exports": {
".": "./dist/index.js",
"./*": "./*"
},
"browserslist": [
"extends @cloudbeaver/browserslist-config"
],
"scripts": {
"build": "node cycle-fix.js remove && rimraf --glob dist && yarn workspaces foreach -Ap --include '@cloudbeaver/core-sdk' run gql:gen && yarn tsc -b && node cycle-fix.js restore",
"bundle": "yarn build && node cycle-fix.js remove && vite build --mode production && node cycle-fix.js restore",
"dev": "yarn build && concurrently -P -k \"yarn workspaces foreach -Ap --include '@cloudbeaver/core-sdk' run gql:gen:dev\" \"vite {@}\"",
"lint": "eslint ./src/ --ext .ts,.tsx",
"version:set": "yarn core-cli-set-version",
"validate-dependencies": "core-cli-validate-dependencies",
"cycle-fix:remove": "node cycle-fix.js remove",
"cycle-fix:restore": "node cycle-fix.js restore",
"cycle-fix:cleanup": "node cycle-fix.js cleanup"
},
"dependencies": {
"@cloudbeaver/core-browser": "workspace:*",
"@cloudbeaver/plugin-sso": "workspace:*",
"@cloudbeaver/product-base": "workspace:*",
"@cloudbeaver/product-default-impl": "workspace:*",
"react": "^19",
"react-dom": "^19",
"tslib": "^2",
"vite": "^7"
},
"product": {
"name": "CloudBeaver Community"
},
"devDependencies": {
"@cloudbeaver/browserslist-config": "workspace:*",
"@cloudbeaver/core-cli": "workspace:*",
"@cloudbeaver/tsconfig": "workspace:*",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9",
"rimraf": "^6",
"sass-embedded": "^1",
"tailwindcss": "4.0.7",
"typescript": "^5"
}
}