-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo \"No test specified\" && exit 0",
"lint": "next lint",
"prepare": "husky install",
"postinstall": "husky install"
},
"dependencies": {
"@hello-pangea/dnd": "^17.0.0",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-query-devtools": "4",
"axios": "^1.7.7",
"framer-motion": "^11.11.8",
"next": "14.2.20",
"next-auth": "^5.0.0-beta.20",
"path-to-regexp": "^8.0.0",
"punycode": "^2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.9",
"react-onesignal": "^3.0.1",
"react-snowfall": "^2.2.0",
"react-spinners": "^0.14.1",
"react-to-print": "^3.0.2",
"react-toastify": "^10.0.5",
"swiper": "^11.1.14",
"uuid": "^10.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.0.3",
"@tanstack/eslint-plugin-query": "4",
"@types/node": "^20.17.10",
"@types/react": "^18.3.16",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js, jsx, ts, tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"prettier --write"
]
}
}