-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "nextjs-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"tsLint": "tsc --incremental false --skipLibCheck --noEmit",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@vercel/og": "^0.5.2",
"axios": "^1.3.5",
"dayjs": "^1.11.7",
"microcms-js-sdk": "^2.3.3",
"next": "13.3.0",
"nodemailer": "^6.9.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-hook-recaptcha-v2": "^2.0.0",
"swiper": "^9.2.2",
"tailwindcss": "3.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/gtag.js": "^0.0.12",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.7",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"typescript": "5.0.4"
}
}