forked from part4-6team/Coworkers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "coworkers",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --cache --write .",
"eslint --cache . --ext ts,tsx --fix --report-unused-disable-directives --max-warnings 0"
]
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^5.59.15",
"aos": "^2.3.4",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"coworkers": "^0.7.4",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dnd-kit": "^0.0.2",
"framer-motion": "^11.11.11",
"next": "14.2.14",
"next-pwa": "^5.6.0",
"react": "^18",
"react-datepicker": "^7.5.0",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-intersection-observer": "^9.13.1",
"sharp": "^0.33.5",
"tailwind-scrollbar-hide": "^1.1.7",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/next": "^9.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"typescript": "^5.4.2"
}
}