-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 3.15 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
{
"name": "stacktest-monorepo",
"version": "0.1.0",
"private": true,
"description": "Provider-agnostic infrastructure testing framework",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"packages/**/src/**/*.ts\"",
"format": "prettier --write \"packages/**/src/**/*.ts\" \"docs/**/*.md\"",
"docs:dev": "pnpm --dir website start",
"docs:build": "pnpm --dir website build",
"docs:generate": "node scripts/generate-docs.js",
"docs:screenshots": "node scripts/generate-dashboard-screenshots.ts",
"docs:check": "pnpm docs:generate && git diff --exit-code website/docs/cli website/docs/schema website/docs/api schemas && pnpm docs:build",
"pack:dry-run": "node scripts/npm-pack-dry-run.mjs",
"publish:local:first-release": "node scripts/npm-publish-local.mjs",
"sandbox:lint": "node packages/cli/dist/index.js lint --config examples/aws-cloudformation-basic/stacktest.yaml",
"sandbox:plan": "node packages/cli/dist/index.js plan --config examples/aws-cloudformation-basic/stacktest.yaml",
"sandbox:run": "node packages/cli/dist/index.js run --config examples/aws-cloudformation-basic/stacktest.yaml",
"sandbox:run-no-cleanup": "node packages/cli/dist/index.js run --config examples/aws-cloudformation-basic/stacktest.yaml --skip-cleanup",
"sandbox:params:lint": "node packages/cli/dist/index.js lint --config examples/aws-cloudformation-parameters/stacktest.yaml",
"sandbox:params:plan": "node packages/cli/dist/index.js plan --config examples/aws-cloudformation-parameters/stacktest.yaml",
"sandbox:params:run": "node packages/cli/dist/index.js run --config examples/aws-cloudformation-parameters/stacktest.yaml",
"sandbox:params:run-no-cleanup": "node packages/cli/dist/index.js run --config examples/aws-cloudformation-parameters/stacktest.yaml --skip-cleanup",
"sandbox:tf:lint": "node packages/cli/dist/index.js lint --config examples/terraform-basic/stacktest.yaml",
"sandbox:tf:plan": "node packages/cli/dist/index.js plan --config examples/terraform-basic/stacktest.yaml",
"sandbox:tf:run": "node packages/cli/dist/index.js run --config examples/terraform-basic/stacktest.yaml",
"sandbox:tf:run-no-cleanup": "node packages/cli/dist/index.js run --config examples/terraform-basic/stacktest.yaml --skip-cleanup",
"sandbox:composition:lint": "node packages/cli/dist/index.js lint --config examples/multi-provider-composition/stacktest.yaml",
"sandbox:composition:plan": "node packages/cli/dist/index.js plan --config examples/multi-provider-composition/stacktest.yaml",
"sandbox:composition:run": "node packages/cli/dist/index.js run --config examples/multi-provider-composition/stacktest.yaml --provider fake"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^6.0.3",
"vitest": "^1.5.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.2"
}
}