-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 734 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 734 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
{
"name": "@lazarv/react-server-example-hello-world",
"private": true,
"description": "@lazarv/react-server Hello World example application",
"scripts": {
"dev": "react-server",
"dev:app": "react-server ./App.jsx",
"build": "react-server build",
"build:app": "react-server build ./App.jsx",
"start": "react-server start",
"test:lambda": "pnpm dlx lambda-handler-tester@latest",
"clean": "rm -rf .react-server .aws-lambda"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lazarv/react-server": "workspace:^",
"@lazarv/react-server-adapter-aws-lambda": "workspace:^"
},
"devDependencies": {
"aws-cdk-lib": "^2.221.1",
"constructs": "^10.4.2"
}
}