forked from SujalXplores/next-js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "next-js-boilerplate",
"version": "1.0.0",
"private": true,
"keywords": ["next.js", "tailwindcss", "biome", "boilerplate"],
"description": "Next.js boilerplate with Tailwind CSS, Biome",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"prepare": "husky",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:staged": "lint-staged"
},
"dependencies": {
"critters": "0.0.25",
"next": "15.3.0",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/postcss": "4.1.8",
"@tailwindcss/typography": "0.5.16",
"@types/node": "22.14.1",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"babel-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
"husky": "9.1.7",
"lint-staged": "15.5.1",
"postcss": "8.5.3",
"tailwindcss": "4.1.8",
"tailwindcss-animate": "1.0.7",
"typescript": "5.8.3"
},
"browserslist": "defaults"
}