-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
75
76
77
{
"name": "muhammadasif",
"version": "2.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "MUHAMMAD ASIF",
"username": "muhammadasif-wd",
"email": "muhammadasif.wd@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/muhammadasif-wd/muhammadasif"
},
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@iconify/react": "^5.0.2",
"@nextui-org/button": "^2.0.34",
"@nextui-org/card": "^2.0.31",
"@nextui-org/dropdown": "^2.1.31",
"@nextui-org/image": "^2.0.29",
"@nextui-org/pagination": "^2.0.36",
"@nextui-org/popover": "^2.1.29",
"@nextui-org/skeleton": "^2.0.31",
"@nextui-org/system": "^2.2.2",
"framer-motion": "^11.3.2",
"next": "^14.2.15",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.5.0",
"tailwind-scrollbar": "^3.1.0"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}