-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.67 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "aws-amplify-gen2",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"typecheck:amplify": "tsc -p amplify/tsconfig.json --noEmit",
"typecheck:amplify:watch": "tsc -p amplify/tsconfig.json -w --noEmit",
"typecheck:all": "pnpm run typecheck && pnpm run typecheck:amplify",
"check:deps": "knip"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.5.5",
"@t3-oss/env-nextjs": "^0.13.8",
"aws-amplify": "^6.6.6",
"next": "15.5.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@aws-amplify/backend": "^1.5.1",
"@aws-amplify/backend-cli": "^1.3.0",
"@eslint-react/eslint-plugin": "^1.53.1",
"@next/eslint-plugin-next": "^15.5.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20",
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9",
"aws-cdk": "^2",
"aws-cdk-lib": "^2",
"constructs": "^10.3.0",
"esbuild": "^0.25.10",
"eslint": "^9.36.0",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"knip": "^5.64.0",
"semantic-release": "^24.2.9",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"pnpm": {
"overrides": {
"@types/react": "19.1.13",
"@types/react-dom": "19.1.9"
},
"ignoredBuiltDependencies": [
"sharp"
]
}
}