forked from MohammadrezaShad/main
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.41 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.41 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
{
"name": "plaza-mag",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "panda codegen",
"dev": "rimraf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen --config graphql.config.yml"
},
"dependencies": {
"@legendapp/state": "^2.1.8",
"@pandacss/dev": "^0.34.3",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^5.27.5",
"@tanstack/react-query-next-experimental": "^5.27.5",
"color": "^4.2.3",
"cookies-next": "^4.1.1",
"hls.js": "^1.5.7",
"next": "14.1.3",
"nextjs-toploader": "^1.6.6",
"rc-collapse": "^3.7.2",
"rc-dialog": "^9.4.0",
"rc-drawer": "^6.5.2",
"rc-slider": "^10.5.0",
"react": "18.2.0",
"react-circular-progressbar": "^2.1.0",
"react-dom": "18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.4.0",
"react-otp-input": "^3.1.1",
"react-paginate": "^8.2.0",
"react-popper": "^2.3.0",
"react-select": "^5.8.0",
"react-sticky-box": "^2.0.5",
"react-tabs": "^6.0.2",
"react-toastify": "^9.1.3",
"react-use": "^17.5.0",
"sharp": "^0.33.2",
"swiper": "^11.0.7"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@svgr/webpack": "^8.1.0",
"@types/color": "^3.0.6",
"@types/node": "20.4.8",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"graphql": "^16.8.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"yarn format",
"yarn lint",
"git add"
]
}
}