-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.12 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
{
"name": "jamtools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "pnpm@9.13.2",
"scripts": {
"start": "turbo run start",
"prestart": "bash -c \"./configs/scripts/check-dependencies.sh\"",
"postinstall": "pnpm -r --filter springboard-cli run dev:setup",
"build": "turbo run build",
"build-saas": "turbo run build-saas",
"check-types": "turbo run check-types",
"dev": "npm run dev-dev --prefix packages/springboard/cli",
"docs": "cd docs && docker compose up",
"build-docs-for-pages": "cd doks && npm i && npm run build",
"dev-without-node": "turbo run dev --filter=\"!./apps/jamtools/node\"",
"debug-node": "npm run debug --prefix apps/jamtools/node",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"pretest:e2e": "pnpm --filter @springboard/vite-plugin build",
"test:e2e": "vitest run tests/e2e",
"test:e2e:watch": "vitest watch tests/e2e",
"pretest:integration": "pnpm --filter @springboard/vite-plugin build",
"test:integration": "vitest run tests/integration",
"pretest:vite": "pnpm --filter @springboard/vite-plugin build",
"test:vite": "vitest",
"test:vite:ui": "vitest --ui",
"test:vite:coverage": "vitest run --coverage",
"lint": "TURBO_NO_UPDATE_NOTIFIER=true turbo run lint",
"fix": "TURBO_NO_UPDATE_NOTIFIER=true turbo run fix",
"ci": "NODE_MODULES_PARENT_FOLDER=$PWD TURBO_NO_UPDATE_NOTIFIER=true turbo run lint check-types build test",
"heroku-postbuild": "NODE_ENV=production npm run build-saas",
"build-desktop": "RUN_SIDECAR_FROM_WEBVIEW=true npx tsx packages/springboard/cli/src/cli.ts build ./apps/jamtools/modules/index.ts --platforms desktop",
"build-all": "RUN_SIDECAR_FROM_WEBVIEW=true npx tsx packages/springboard/cli/src/cli.ts build ./apps/small_apps/empty_app/index.ts --platforms all",
"splash-screen-app": "npx tsx packages/springboard/cli/src/cli.ts dev ./apps/small_apps/app_with_splash_screen/app_with_splash_screen.tsx",
"build:publish": "npx tsx scripts/build-for-publish.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jamtools/core": "workspace:*",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "4.4.1",
"@vitest/ui": "catalog:",
"esbuild": "catalog:",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.5",
"identity-obj-proxy": "3.0.0",
"react-router": "7.9.6",
"shadow-dom-testing-library": "1.13.1",
"springboard": "workspace:*",
"tsup": "8.5.1",
"tsx": "4.20.6",
"typescript": "5.9.3",
"vite": "catalog:",
"vite-tsconfig-paths": "5.1.4",
"vitest": "catalog:"
},
"dependencies": {
"turbo": "2.6.1"
},
"pnpm": {
"overrides": {
"react": "catalog:",
"esbuild": "catalog:",
"estree-walker": "catalog:",
"vite": "catalog:",
"hono": "catalog:",
"rxjs": "catalog:",
"jsdom": "25.0.1"
}
}
}