-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 3.58 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 3.58 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
{
"name": "bubblelab",
"private": true,
"scripts": {
"clean": "rm -rf node_modules/.cache .turbo packages/*/dist packages/*/.turbo packages/*/*.tsbuildinfo apps/*/dist apps/*/.turbo apps/*/*.tsbuildinfo",
"build": "pnpm build:core && turbo build --filter=\"!@bubblelab/bubble-core\" --filter=\"!@bubblelab/shared-schemas\"",
"build:all": "pnpm build:core && turbo build --filter=\"!@bubblelab/bubble-core\" --filter=\"!@bubblelab/shared-schemas\"",
"build:core": "turbo build --filter=\"@bubblelab/shared-schemas\" --filter=\"@bubblelab/bubble-core\" --filter=\"@bubblelab/bubble-runtime\"",
"publish:packages": "pnpm build:core && pnpm --filter=\"@bubblelab/shared-schemas\" --filter=\"@bubblelab/bubble-core\" --filter=\"@bubblelab/bubble-runtime\" --filter=\"create-bubblelab-app\" --filter=\"@bubblelab/ts-scope-manager\" publish --access public --no-git-checks",
"setup:env": "bash setup-env.sh",
"dev": "pnpm setup:env && pnpm build:core && turbo dev --filter=\"bubblelab-api\" --filter=\"bubble-studio\"",
"dev:hot": "pnpm setup:env && pnpm build:core && turbo run dev:hot --filter=\"bubblelab-api\" --filter=\"bubble-studio\"",
"dev:all": "turbo dev",
"build:dashboard": "pnpm run build:core && cd apps/nodex-dashboard && pnpm build",
"build:ide": "pnpm run build:core && cd apps/bubble-studio && pnpm build",
"lint": "turbo lint",
"lint:src": "eslint \"packages/**/src/**/*.{js,ts,tsx}\" \"apps/**/src/**/*.{js,ts,tsx}\" --ignore-pattern \"**/external/**\" --ignore-pattern \"**/node_modules/**\" --ignore-pattern \"**/dist/**\" --ignore-pattern \"**/.next/**\" --fix",
"lint:check": "eslint \"packages/**/src/**/*.{js,ts,tsx}\" \"apps/**/src/**/*.{js,ts,tsx}\" --ignore-pattern \"**/external/**\" --ignore-pattern \"**/node_modules/**\" --ignore-pattern \"**/dist/**\" --ignore-pattern \"**/.next/**\"",
"typecheck": "turbo typecheck",
"test": "turbo test --filter=\"!create-bubblelab-app\" --output-logs=errors-only",
"test:core": "turbo test --filter=\"@bubblelab/bubble-core\" --filter=\"@bubblelab/bubble-runtime\"",
"test:coverage": "turbo run test:coverage",
"bubble-to-request": "bun scripts/bubble-to-request.ts",
"bump-versions": "tsx scripts/bump-package-versions.ts",
"bump-and-publish": "pnpm bump-versions && pnpm publish:packages",
"docs:dev": "cd docs && pnpm start",
"docs:build": "cd docs && pnpm build",
"docs:serve": "cd docs && pnpm serve",
"prepare": "husky install",
"check": "pnpm run typecheck && pnpm run lint && pnpm run test"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"glob": "^11.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"turbo": "^1.13.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.0.0",
"zod-to-json-schema": "^3.24.6"
},
"packageManager": "pnpm@10.16.1",
"engines": {
"node": ">=20"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"canvas": "^3.1.2",
"zod": "3.25.76",
"@hono/zod-openapi": "0.18.3",
"@asteasolutions/zod-to-openapi": "7.3.4",
"typescript": "^5.8.3"
},
"patchedDependencies": {
"@sendsafely/sendsafely@3.0.1": "patches/@sendsafely__sendsafely@3.0.1.patch"
}
}
}