-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "nextarter-chakra",
"version": "0.1.0",
"private": true,
"author": "sozonome",
"engines": {
"node": ">=20.14.x",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"turbo": "pnpm dlx [email protected]",
"build:turbo": "pnpm turbo run 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",
"test:e2e": "playwright test",
"format": "prettier --write src",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/react": "^3.0.1",
"@emotion/react": "^11.13.3",
"next": "^15.0.1",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@chakra-ui/cli": "^3.0.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/cz-commitlint": "19.5.0",
"@playwright/test": "^1.48.2",
"@types/react": "^18.3.12",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.1",
"eslint-config-sznm": "^2.0.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"next-sitemap": "^4.2.3",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "^5.6.3"
}
}