-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1022 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
37
38
39
40
{
"name": "note-service-next-generation",
"version": "2.0.0",
"bin": {
"note-service": "bin/note-service.js"
},
"scripts": {
"build": "tsc",
"buildresolvers": "node build.mjs",
"watch": "tsc -w",
"clean": "rm -rf dist",
"pretest": "npm run build",
"test": "jest",
"cdk": "cdk",
"predeploy": "npm run buildresolvers",
"deploy": "npm run cdk deploy -a NoteServiceStack",
"destroy": "npm run cdk destroy -a NoteServiceStack",
"synth": "npm run build && npm run cdk synth > template.yaml"
},
"peerDependencies": {
"aws-cdk-lib": "2.110.0",
"constructs": "10.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.8",
"aws-cdk": "2.118.0",
"aws-cdk-lib": "2.118.0",
"constructs": "10.3.0",
"esbuild": "^0.19.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"@aws-appsync/utils": "^1.6.0",
"glob": "^10.3.10"
}
}