-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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": "nyb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"lint:fix": "npx eslint --ext .tsx,.ts --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{tsx,js,html}": [
"eslint"
]
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.2",
"@aws-sdk/client-s3": "^3.676.0",
"@aws-sdk/s3-request-presigner": "^3.676.0",
"@hookform/resolvers": "^3.9.1",
"@react-google-maps/api": "^2.20.3",
"antd": "^5.22.4",
"antd-style": "^3.7.1",
"formik": "^2.4.6",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"next": "14.2.15",
"react": "^18",
"react-dom": "^18",
"react-fullscreen-crossbrowser": "^1.1.3",
"react-hook-form": "^7.53.1",
"sharp": "^0.33.5",
"swiper": "^11.1.14",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.2.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"postcss": "^8",
"prettier": "^3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}