-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.35 KB
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
{
"name": "cognito-react-example-for-external-idp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"cfn:delete": "aws cloudformation delete-stack --stack-name CognitoReactExample",
"cfn:deploy": "aws cloudformation deploy --template-file ./cloudformation/template.yaml --stack-name CognitoReactExample --capabilities CAPABILITY_IAM",
"cfn:describe": "aws cloudformation describe-stacks --query 'Stacks[0].[Outputs[].[OutputKey,OutputValue]]|[]' --output table --stack-name CognitoReactExample",
"cfn:valid": "aws cloudformation validate-template --template-body file://./cloudformation/template.yaml",
"dev": "vite --port 3000",
"build": "tsc -b && vite build",
"format": "prettier ./src --write",
"lint": "eslint ./src --fix",
"preview": "vite preview"
},
"dependencies": {
"aws-amplify": "^6.10.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"prettier": "^3.4.1",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1"
}
}