-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 978 Bytes
/
package.json
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
{
"name": "azure-custom-resources-root",
"packageManager": "yarn@4.3.1",
"workspaces": [
"workspaces/*/*"
],
"devDependencies": {
"@cp-utils/constraints-config": "^0.1.2",
"@cp-utils/eslint-config": "^0.0.7",
"@cp-utils/gitversion": "^0.0.50",
"@types/node": "^22.2.0",
"@yarnpkg/types": "^4.0.0",
"eslint": "^8",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"scripts": {
"eslint": "eslint **/*.ts",
"build:all": "yarn validate:all && yarn build:packages",
"build:packages": "yarn workspaces foreach -A run build",
"validate:all": "yarn validate:constraints && yarn validate:lint",
"validate:constraints": "yarn constraints",
"validate:lint": "yarn eslint"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/joostvdwsd/azure-custom-resources",
"directory": "."
},
"engines": {
"node": ">=18.12.0"
},
"version": "0.0.0"
}