-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 5.16 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 5.16 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@levicape/round",
"version": "0.0.0-local-0",
"author": "Pedro Cardona",
"config": {
"packagemanager": "pnpm",
"packagescript": "pnpm run",
"packageexecutor": "pnpm exec",
"lintpaths": "./iac"
},
"devDependencies": {
"@biomejs/biome": "catalog:lint",
"@levicape/syncretic": "catalog:",
"@types/node": "catalog:types",
"depcheck": "catalog:package",
"nx": "catalog:project-nx",
"publint": "catalog:package",
"syncpack": "catalog:package",
"tsx": "catalog:dev"
},
"engines": {
"node": "24"
},
"files": [
"iac/images",
"README.md",
"LICENSE"
],
"license": "AGPL-3.0-only",
"nx": {
"targets": {
"dx:precommit": {
"dependsOn": [
"dx:prepublish",
"dx:test"
]
},
"dx:prepublish": {
"dependsOn": [
"dx:prepublish:pre",
"dx:lint",
"@levicape/hyperx:dx:precommit",
"@levicape/round-briscas-io:dx:precommit",
"@levicape/round-briscas-ui:dx:precommit",
"@levicape/round-iac-stacks:dx:precommit"
]
},
"dx:lint": {
"dependsOn": [
"nx:compile",
"lint:format",
"package:format"
]
},
"dx:test": {
"dependsOn": [
"dx:lint",
"nx:test"
]
},
"nx:clean": {
"dependsOn": [
"clean:module"
]
},
"nx:compile": {
"dependsOn": [
"@levicape/hyperx:nx:compile",
"@levicape/round-briscas-io:nx:compile",
"@levicape/round-briscas-ui:nx:compile",
"@levicape/round-iac-stacks:nx:compile"
]
},
"nx:sync": {
"dependsOn": [
"iac-workflows:nx:sync"
]
},
"nx:test": {
"dependsOn": [
"@levicape/hyperx:nx:test",
"@levicape/round-briscas-io:nx:test",
"@levicape/round-briscas-ui:nx:test",
"@levicape/round-iac-stacks:nx:test"
]
}
}
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"pnpm": {
"supportedArchitectures": {
"os": [
"linux",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64"
]
}
},
"private": true,
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": "github:levicape/round",
"scripts": {
"build": "$npm_package_config_packageexecutor nx nx:compile --verbose",
"clean": "$npm_package_config_packageexecutor nx nx:clean",
"clean:module": "rm -rf $npm_package_config_outpaths || true",
"clean:packages": "rm -rf **/node_modules && $npm_package_config_packageexecutor nx reset",
"dx:commit": "$npm_package_config_packagescript clean:packages && $npm_package_config_packageexecutor nx dx:precommit --no-cloud --verbose",
"dx:image": "$npm_package_config_packageexecutor nx pack:build iac-images-application --verbose",
"dx:precommit": "$npm_package_config_packageexecutor nx dx:precommit:pre && $npm_package_config_packageexecutor nx dx:sync && $npm_package_config_packageexecutor nx package:deps",
"dx:precommit:pre": "echo \"Starting precommit dx. This will recompile iac files and check package.json dependencies.\"",
"dx:prepublish": "$npm_package_config_packageexecutor nx prepublishOnly",
"dx:prepublish:pre": "echo \"Starting prepublish dx. This will compile the package, lint it, format package.json and verify all exports are valid. \"",
"dx:sync": "$npm_package_config_packageexecutor nx dx:sync:pre && $npm_package_config_packageexecutor nx nx:sync --verbose",
"dx:sync:pre": "echo \"Starting sync dx. This will generate all the workflows and sync them with the repository.\"",
"lint": "$npm_package_config_packageexecutor biome check $npm_package_config_lintpaths",
"lint:format": "$npm_package_config_packageexecutor biome check --write $npm_package_config_lintpaths",
"lint:unsafe": "$npm_package_config_packageexecutor biome check --write --unsafe $npm_package_config_lintpaths",
"package:deps": "$npm_package_config_packageexecutor depcheck",
"package:fix": "$npm_package_config_packageexecutor syncpack fix-mismatches",
"package:format": "$npm_package_config_packageexecutor syncpack format",
"package:update": "$npm_package_config_packageexecutor syncpack update",
"postclean:packages": "$npm_package_config_packagemanager install --ignore-scripts",
"precommit": "$npm_package_config_packageexecutor nx dx:prepublish --no-cloud --verbose",
"predx:lint": "$npm_package_config_packageexecutor nx clean",
"prelint": "$npm_package_config_packageexecutor biome format $npm_package_config_lintpaths",
"prepublishOnly": "$npm_package_config_packageexecutor publint --strict",
"test": "$npm_package_config_packageexecutor nx nx:test --verbose",
"xx:workflow": "$npm_package_config_packageexecutor nx run-many -t build,lint,test --parallel=1 --verbose --no-cloud && $npm_package_config_packageexecutor nx run-many -t package:deps,prepublish --parallel=1 --verbose --no-cloud"
},
"type": "commonjs"
}