forked from purecloudlabs/audiohook-reference-implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.5 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
{
"name": "audiohook-fargate",
"version": "1.0.2",
"private": true,
"author": "[email protected]",
"license": "MIT",
"bin": {
"audiohook-fargate": "build/bin/audiohook-fargate.js"
},
"scripts": {
"setup": "npm install && npm install --prefix app && npm install --prefix client",
"cdk-synth": "npm run buildcheck && npx cdk synth",
"cdk-diff": "npm run buildcheck && npx cdk diff",
"cdk-deploy": "npm run buildcheck && npx cdk deploy --outputs-file ./cdk-exports.json",
"cdk-destroy": "npx cdk destroy",
"buildcheck": "tsc --project tsconfig.json --pretty --noEmit && npm run lint && npm run buildcheck --prefix app && npm run buildcheck --prefix client",
"lint": "eslint . --ext .ts --cache --max-warnings 0",
"update": "ncu -t minor -u && npm install && npm run update --prefix app && npm run update --prefix client",
"clean": "rm -r build/ ; rm -r cdk.out/ ; npm run clean --prefix app ; npm run clean --prefix client",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"dependencies": {
"aws-cdk-lib": "^2.39.0",
"constructs": "^10.1.89",
"dotenv": "^16.0.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^16.11.56",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"aws-cdk": "^2.39.0",
"eslint": "^8.23.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "~4.8.2"
}
}