-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 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
{
"name": "@100stacks/aws-cloudfront-deploy-fullstack",
"version": "1.0.0",
"description": "AWS CloudFront fullstack Deploy",
"private": true,
"scripts": {
"frontend:dev": "npm run dev --workspace=@100stacks/frontend",
"frontend:build": "npm run build --workspace=@100stacks/frontend",
"aws:deploy": "cd backend; cdk deploy",
"aws:destroy": "cd backend; cdk destroy",
"aws:synth": "cd backend; cdk synth",
"aws:diff": "cd backend; cdk diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/100stacks/aws-cloudfront-deploy-fullstack.git"
},
"keywords": [
"aws",
"cdk",
"nextjs",
"shadcn/ui",
"tailwind",
"lucide",
"radix"
],
"author": "James Thompson (@100stacks)",
"license": "MIT",
"workspaces": [
"frontend/**",
"backend/**"
]
}