-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 KB
/
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
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
{
"name": "aws-custom-resources-root",
"version": "0.0.0",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/joostvdwsd/aws-custom-resources",
"directory": "."
},
"author": "Joost van der Waal <joost@jvdwaal.nl>",
"license": "MIT",
"scripts": {
"aws:login": "aws sso login --profile jw-dev",
"build:all": "yarn validate:all && yarn build:packages",
"build:packages": "yarn workspaces foreach -A run build",
"validate:all": "yarn validate:constraints && yarn validate:lint && yarn test",
"validate:constraints": "yarn constraints",
"validate:lint": "yarn eslint",
"test": "jest --coverage",
"eslint": "eslint **/*.ts"
},
"workspaces": [
"workspaces/*"
],
"devDependencies": {
"@cp-utils/constraints-config": "^0.1.2",
"@cp-utils/eslint-config": "^0.0.7",
"@cp-utils/gitversion": "^0.0.49",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@yarnpkg/types": "^4.0.0",
"eslint": "^8",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.4.5"
},
"packageManager": "yarn@4.2.2",
"private": true,
"engines": {
"node": ">=18.12.0"
},
"jest": {
"testMatch": [
"**/*._test_.ts"
],
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
]
}
}
}