forked from maquinaweb/typescript-nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "typescript-nextjs-starter",
"description": "A TypeScript starter for Next.js that includes all you need to build amazing projects",
"version": "1.0.0",
"private": true,
"author": "Maquinaweb <arte@maquinaweb.com.br> (@maquinaweb)",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "biome lint src",
"format": "biome check src --write --no-errors-on-unmatched --files-ignore-unknown=true",
"postinstall": "husky"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"next": "16.0.10",
"postcss": "^8.5.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@biomejs/biome": "2.3.9",
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@types/node": "25.0.2",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"typescript": "5.9.3"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"sharp"
]
}