forked from zzacong/linkedin-clone-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "linkedin-clone-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:staged": "eslint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,scss,json,md}\"",
"format:staged": "prettier --write",
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"ci-check": "run-p lint typecheck",
"postinstall": "prisma generate"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@formkit/auto-animate": "^1.0.0-beta.1",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.13",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.9.2",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.14.0",
"@tanstack/react-query": "^4.0.10",
"@tanstack/react-query-devtools": "^4.0.10",
"axios": "^1.1.3",
"clsx": "^1.2.1",
"date-fns": "^2.29.1",
"firebase": "^9.9.1",
"firebase-admin": "^11.0.0",
"framer-motion": "^7.6.6",
"jotai": "^1.7.6",
"next": "13.0.3",
"next-auth": "^4.10.2",
"next-themes": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"sharp": "^0.31.2",
"zod": "^3.17.10"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"autoprefixer": "^10.4.5",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.13",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.14.0",
"tailwindcss": "^3.1.6",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
}
}