-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.72 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.72 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
81
{
"type": "module",
"name": "info-glue-root",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"prepare": "pnpm husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"commit": "cz",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm --filter @krafteq/infraglue build && changeset publish --provenance",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "vitest run --config vitest.all.config.ts",
"test:watch": "vitest",
"ts:check": "pnpm -r ts:check",
"apply": "cross-env PULUMI_CONFIG_PASSPHRASE='' tsx ./packages/cli/src/index.ts apply -d ./examples/terraform_and_pulumi/",
"destroy": "cross-env PULUMI_CONFIG_PASSPHRASE='' tsx ./packages/cli/src/index.ts destroy -d ./examples/terraform_and_pulumi/",
"ig-example": "cross-env PULUMI_CONFIG_PASSPHRASE='' tsx ./packages/cli/src/index.ts -d ./examples/terraform_and_pulumi/",
"ig-example:postgres": "cross-env PULUMI_CONFIG_PASSPHRASE='' tsx ./packages/cli/src/index.ts -d ./examples/terraform_and_pulumi/postgres/"
},
"keywords": [],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">= 10.12.1",
"node": ">= 22.10.0"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,jsonc,json5,md}": [
"eslint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"overrides": {
"minimatch@<3.1.3": "3.1.3",
"lodash@<4.17.23": "4.17.23",
"js-yaml@>=3.0.0 <3.14.2": "3.14.2",
"js-yaml@>=4.0.0 <4.1.1": "4.1.1",
"ajv@>=8.0.0 <8.18.0": "8.18.0",
"@eslint/plugin-kit@<0.3.4": "0.3.4"
}
},
"devDependencies": {
"@changesets/cli": "^2.28.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.29.0",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^6.6.0",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vitest": "^3.1.0"
}
}