forked from agustinusnathaniel/nextarter-chakra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
{
"name": "nextarter-chakra",
"version": "0.1.0",
"private": true,
"author": "sozonome",
"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/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"framer-motion": "^11.2.6",
"next": "^14.2.3",
"next-pwa": "^5.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/cz-commitlint": "19.2.0",
"@playwright/test": "^1.44.0",
"@types/react": "^18.3.2",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-config-sznm": "^2.0.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"next-sitemap": "^4.2.3",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20.14.x",
"pnpm": ">=9"
},
"packageManager": "[email protected]"
}