-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.39 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.39 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
{
"name": "stackdock",
"version": "0.1.0",
"private": true,
"description": "Open-source multi-cloud management platform",
"repository": {
"type": "git",
"url": "https://github.com/stackdock/stackdock.git"
},
"license": "MIT",
"author": "StackDock Team",
"trademark": "StackDock™ is a trademark with an intent-to-use application filed in October 2025. See TRADEMARK.md for usage policy.",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "node scripts/dev/start-web.js",
"dev:marketing": "npm run dev --workspace=apps/marketing",
"dev:docs": "npm run dev --workspace=apps/docs",
"dev:all": "turbo run dev",
"dev:convex": "node scripts/dev/start-convex.js",
"build": "node scripts/build/build-all.js",
"build:marketing": "npm run build --workspace=apps/marketing",
"build:docs": "npm run build --workspace=apps/docs",
"lint": "npm run type-check --workspace=apps/web",
"lint:marketing": "npm run lint --workspace=apps/marketing",
"lint:docs": "npm run lint --workspace=apps/docs",
"type-check": "npm run type-check --workspaces",
"test": "node scripts/test/run-tests.js",
"test:watch": "node scripts/test/test-watch.js",
"test:coverage": "node scripts/test/test-coverage.js",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "node scripts/utils/cleanup.js",
"health": "node scripts/utils/health-check.js",
"pipeline": "node scripts/pipeline/run-all-checks.js",
"pipeline:lint": "bash scripts/pipeline/lint-type-check.sh",
"pipeline:test": "node scripts/test/run-tests.js",
"pipeline:e2e": "bash scripts/pipeline/playwright-e2e.sh",
"pipeline:security": "bash scripts/pipeline/security-scan.sh",
"pipeline:build": "bash scripts/pipeline/build-verify.sh"
},
"devDependencies": {
"@octokit/rest": "^20.0.0",
"@types/node": "^20.0.0",
"convex": "^1.28.0",
"esbuild": "^0.25.0",
"prettier": "^3.0.0",
"turbo": "^1.10.0",
"typescript": "^5.2.0",
"vitest": "^3.0.5"
},
"packageManager": "npm@10.0.0",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@radix-ui/react-select": "^2.2.6"
},
"overrides": {
"js-yaml": "^4.1.1",
"xmlbuilder2": {
"js-yaml": "^4.1.1"
}
},
"optionalDependencies": {
"@sentry/browser": "^8.55.0",
"@sentry/react": "^8.55.0"
}
}