-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "aws-ambassador-official-website",
"version": "1.0.0",
"description": "AWS Educate TW Campus Ambassador Official Website - Production Ready",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,json,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,css}\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^3.3.3",
"@tanstack/react-query": "^5.25.0",
"@types/node": "^20.9.0",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"autoprefixer": "^10.4.16",
"axios": "^1.6.2",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"lottie-react": "^2.4.0",
"lucide-react": "^0.563.0",
"msw": "^1.3.2",
"next": "^14.0.4",
"next-intl": "^3.0.0",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.0",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.4",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}