-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "nextarter-chakra",
"version": "0.1.0",
"private": true,
"author": "sozonome",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"test:e2e": "playwright test",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"framer-motion": "^8.2.0",
"next": "^13.1.1",
"next-pwa": "^5.6.0",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.0",
"@commitlint/cz-commitlint": "^17.4.0",
"@playwright/test": "^1.29.1",
"@types/react": "^18.0.26",
"commitizen": "^4.2.6",
"commitlint": "^17.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"eslint-config-sznm": "^1.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"next-sitemap": "^3.1.44",
"prettier": "^2.8.1",
"standard-version": "^9.5.0",
"typescript": "^4.9.4"
}
}