-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 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
{
"name": "next-app-starter",
"version": "0.1.0",
"private": true,
"description": "Give your description here",
"author": "Manas Kumar Pradhan <contact@devmanas.in>",
"license": "UNLICENSED",
"repository": "https://github.com/manask-pradhan/next-app-starter",
"homepage": "https://devmanas.in",
"bugs": {
"url": "https://github.com/manask-pradhan/next-app-starter/issues"
},
"scripts": {
"preinstall": "npx only-allow yarn",
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.553.0",
"next": "15.5.4",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"shadcn": "^3.5.0",
"tailwind-merge": "^3.3.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix --no-warn-ignored",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"only-allow": "^1.2.1",
"prettier": "3.6.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"engines": {
"node": ">=22.13",
"npm": ">=9",
"yarn": ">=1.22"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"keywords": [
"nextjs"
]
}