-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "next16-boilerplate",
"version": "2.2.0",
"private": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"export": "next build",
"start": "npx serve@latest out",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint && npm run format:check"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"next": "16.0.10",
"next-intl": "^4.3.12",
"react": "19.2.0",
"react-dom": "19.2.0",
"tailwind-merge": "^2.6.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.20",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"tailwindcss": "^4",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}