-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "nextarter-chakra",
"version": "0.1.0",
"private": true,
"author": "agustinusnathaniel",
"engines": {
"node": "^24.11.x"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"neverBuiltDependencies": [],
"overrides": {
"@types/react": "19.2.14"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"turbo": "pnpm dlx turbo@2.6.1",
"build:turbo": "pnpm turbo run build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"ultracite:check": "ultracite check",
"ultracite:fix": "ultracite fix",
"biome:ci": "biome ci",
"start": "next start",
"type:check": "tsc --noEmit",
"check:turbo": "pnpm turbo ultracite:check type:check",
"test:e2e": "playwright test",
"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"
},
"dependencies": {
"@chakra-ui/react": "^3.34.0",
"@emotion/react": "^11.14.0",
"commit-and-tag-version": "^12.7.1",
"knip": "^6.0.5",
"next": "16.2.1",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@chakra-ui/cli": "^3.34.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@commitlint/cz-commitlint": "20.5.0",
"@playwright/test": "^1.58.2",
"@types/react": "19.2.14",
"commitizen": "^4.3.1",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"next-sitemap": "^4.2.3",
"typescript": "^6.0.2",
"ultracite": "7.3.2"
}
}