-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.92 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "hackathon-management-tool",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently --names client,backend --prefix-colors green,#DD00FF --kill-others --passthrough-arguments \"next dev\" \"npx ampx sandbox --profile {@} \" ",
"dev:client": "next dev",
"dev:backend": "npx ampx sandbox",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@aldabil/react-scheduler": "^2.9.5",
"@aws-amplify/adapter-nextjs": "^1.0.18",
"@aws-amplify/ui-react": "^6.1.5",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/x-date-pickers": "^6.19.4",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-query": "^5.32.1",
"@tanstack/react-table": "^8.20.5",
"@yudiel/react-qr-scanner": "^2.0.4",
"aws-amplify": "^6.15.4",
"aws-lambda": "^1.0.7",
"contentful": "^10.15.0",
"date-fns": "^4.1.0",
"js-sha3": "^0.9.3",
"luxon": "^3.4.4",
"next": "^14.2.12",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.5",
"react-icons": "^5.0.1",
"react-loading-skeleton": "^3.4.0",
"react-qrcode-logo": "^3.0.0",
"react-toastify": "^10.0.5",
"tailwind-merge": "^2.2.2",
"validator": "^13.15.20"
},
"devDependencies": {
"@aws-amplify/backend": "^1.16.1",
"@aws-amplify/backend-cli": "^1.8.0",
"@aws-sdk/client-cognito-identity-provider": "^3.588.0",
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
"@next/eslint-plugin-next": "^15.4.5",
"@tanstack/react-query-devtools": "^5.84.1",
"@types/aws-lambda": "^8.10.138",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/validator": "^13.11.10",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"autoprefixer": "^10.0.1",
"aws-cdk": "^2.126.0",
"aws-cdk-lib": "^2.126.0",
"concurrently": "^9.2.0",
"constructs": "^10.3.0",
"eslint": "^9.32.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}