-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.63 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.63 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
{
"name": "c3-amazon-connect",
"version": "0.0.0",
"private": true,
"bin": {
"c3-amazon-connect": "bin/c3-amazon-connect.js"
},
"scripts": {
"style:check": "npx prettier --check .",
"style:fix": "npx prettier --write .",
"lint": "npx eslint .",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"synth": "bash ./scripts/synth.sh",
"deploy": "bash ./scripts/deploy.sh",
"display-urls": "echo \"$(<./exports/C3PaymentRequestAppUrl.txt )\" && echo \"\n\" && echo \"$(<./exports/C3ReceiptAppUrl.txt )\"",
"insert-placeholders": "npm run style:fix && bash ./scripts/insert-placeholders.sh",
"compress-files": "bash ./scripts/compress-files.sh",
"postinstall": "npm --prefix ./lib/lambda/c3-utils-layer/lib/nodejs ci && npm --prefix ./lib/lambda/c3-create-payment-request ci && npm --prefix ./lib/lambda/c3-validate-entry ci && npm --prefix ./lib/lambda/c3-send-receipt ci && npm --prefix ./lib/lambda/c3-submit-payment ci && npm --prefix ./lib/lambda/c3-tokenize-transaction ci && npm --prefix ./lib/lambda/c3-subject-lookup ci && npm --prefix ./lib/lambda/c3-send-agent-message ci",
"prepare": "husky"
},
"devDependencies": {
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/jest": "^30.0.0",
"@types/node": "24.12.2",
"aws-cdk": "2.1118.0",
"conventional-changelog-conventionalcommits": "^9.3.1",
"husky": "^9.1.7",
"jest": "^30.3.0",
"prettier": "^3.8.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
},
"dependencies": {
"aws-cdk-lib": "2.249.0",
"constructs": "^10.6.0",
"source-map-support": "^0.5.21"
}
}