-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
61 lines (61 loc) · 1.74 KB
/
package.json
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
61
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"amplify:sandbox": "ampx sandbox",
"export": "tsx scripts/export.ts",
"seed": "tsx scripts/seed.ts",
"reset": "tsx scripts/reset.ts",
"export-s3": "tsx scripts/export-s3.ts",
"import-s3": "tsx scripts/import-s3.ts"
},
"dependencies": {
"@aws-amplify/adapter-nextjs": "^1.2.4",
"@aws-amplify/ui-react": "^6.1.12",
"@aws-sdk/client-sns": "^3.598.0",
"@tailwindui/react": "^0.1.1",
"aws-amplify": "^6.3.6",
"dayjs": "^1.11.11",
"geopattern": "^1.2.3",
"next": "14.2.4",
"next-plausible": "^3.12.0",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@aws-amplify/backend": "^1.0.3",
"@aws-amplify/backend-cli": "^1.0.4",
"@aws-cdk/aws-pipes-alpha": "^2.146.0-alpha.0",
"@aws-cdk/aws-pipes-sources-alpha": "^2.146.0-alpha.0",
"@aws-cdk/aws-pipes-targets-alpha": "^2.146.0-alpha.0",
"@aws-sdk/client-dynamodb": "^3.596.0",
"@aws-sdk/lib-dynamodb": "^3.596.0",
"@types/geopattern": "^1.2.9",
"@types/js-yaml": "^4.0.9",
"@types/json2csv": "^5.0.7",
"@types/mime-types": "^2.1.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"aws-cdk": "^2.145.0",
"aws-cdk-lib": "^2.145.0",
"constructs": "^10.3.0",
"csv-parser": "^3.0.0",
"esbuild": "^0.21.5",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"js-yaml": "^4.1.0",
"json2csv": "^6.0.0-alpha.2",
"mime-types": "^2.1.35",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.15.4",
"typescript": "^5.4.5"
}
}