-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "better-apis-workshop",
"version": "2.0.0",
"author": "Mikael Vesavuori",
"description": "Workshop and demo for improving API quality, stability, and observability",
"main": "index.ts",
"license": "MIT",
"keywords": [
"apis",
"quality",
"stability",
"observability",
"security",
"workshop",
"demo",
"learning"
],
"scripts": {
"start": "npx sls offline",
"deploy": "npx sls deploy",
"remove": "npx sls remove",
"clean": "rm -f __quicktype-*.js",
"lint": "npx eslint './src/**/*.ts' --quiet --fix",
"docs": "npx arkit && npx typedoc --entryPointStrategy expand --readme PROJECT.md",
"build": "npx sls package",
"build:hosting": "npm run docs && cp -r diagrams typedoc-docs",
"test": "npm run test:unit",
"test:unit": "npx jest tests --collectCoverage",
"test:unit:watch": "npx jest --clearCache && npx jest tests --collectCoverage --watch",
"test:smoke": "bash tests/synthetics/smoketest.sh",
"test:integration": "npx ts-node tests/integration/index.ts",
"test:contracts": "npx triplecheck",
"test:load": "k6 run tests/load/k6.js",
"licenses": "npx license-compliance --direct --allow 'MIT;ISC;0BSD;BSD-2-Clause;BSD-3-Clause;Apache-2.0;Unlicense;CC0-1.0'",
"scan:gitleaks": "gitleaks protect && gitleaks detect",
"scan:trivy": "trivy fs .",
"scan:checkov": "checkov -d .",
"sbom": "syft packages . > outputs/sbom.txt",
"sbom:iac": "checkov -d . -o cyclonedx > outputs/checkov_output.xml",
"release": "standard-version",
"prepare": "husky"
},
"dependencies": {
"cross-fetch": "4"
},
"devDependencies": {
"@types/aws-lambda": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"ajv": "8",
"arkit": "1",
"babel-loader": "9",
"esbuild": "0",
"eslint": "8",
"eslint-config-prettier": "8",
"eslint-plugin-prettier": "5",
"husky": "9",
"jest": "29",
"license-compliance": "3",
"msw": "latest",
"prettier": "3",
"serverless": "3",
"serverless-esbuild": "1",
"serverless-iam-roles-per-function": "3",
"serverless-offline": "12",
"serverless-plugin-aws-alerts": "1",
"serverless-plugin-canary-deployments": "latest",
"standard-version": "9",
"triplecheck-cli": "1",
"ts-jest": "29",
"ts-loader": "9",
"ts-node": "10",
"tslib": "latest",
"typedoc": "latest",
"typescript": "5"
}
}