-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "next-chakra-ts-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"test": "jest",
"lint": "next lint",
"lint:fix": "eslint --fix src && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"type:check": "tsc --noEmit --incremental false",
"format:check": "prettier -c src",
"format": "prettier -w src",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.8.5",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11",
"framer-motion": "^4",
"next": "12.1.0",
"next-seo": "^4.29.0",
"next-sitemap": "^1.9.12",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "7",
"eslint-config-next": "12.0.1",
"eslint-config-prettier": "^8.4.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"prettier": "^2.5.1",
"typescript": "4.4.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,mdx}": [
"yarn prettier --write"
]
}
}