-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 891 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 891 Bytes
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
{
"name": "react-starter-infrastructure",
"version": "1.1.0-alhpa.1",
"private": true,
"scripts": {
"build": "tsc",
"clean": "rimraf cdk.out coverage dist",
"cdk": "cdk",
"deploy": "cdk deploy",
"deploy:all": "cdk deploy --all",
"destroy": "cdk destroy",
"destroy:all": "cdk destroy --all",
"diff": "cdk diff",
"synth": "cdk synth",
"test": "jest --coverage=false --silent --verbose",
"test:coverage": "jest --coverage --silent --verbose",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "25.2.3",
"aws-cdk": "2.1105.0",
"jest": "30.2.0",
"rimraf": "6.1.2",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"dependencies": {
"aws-cdk-lib": "2.238.0",
"constructs": "10.4.5",
"dotenv": "17.2.4",
"zod": "4.3.6"
}
}