-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "nextarter-tailwind",
"version": "0.1.0",
"private": true,
"author": "agustinusnathaniel",
"engines": {
"node": ">=22.11.x",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"turbo": "pnpm dlx [email protected]",
"build:turbo": "pnpm turbo build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"type:check": "tsc --noEmit",
"check:turbo": "pnpm turbo lint type:check",
"format": "prettier --write src",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"release": "cross-env HUSKY=0 commit-and-tag-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"next": "^15.0.4",
"next-seo": "^6.6.0",
"next-themes": "^0.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "^2.5.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.1",
"@types/react": "18.3.12",
"autoprefixer": "^10.4.20",
"commit-and-tag-version": "^12.5.0",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.4",
"husky": "^9.1.7",
"knip": "^5.39.2",
"lint-staged": "^15.2.10",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.49",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"typescript": "5.6.3"
}
}