-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.8 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
61
62
63
64
65
66
67
{
"name": "nextjs-blog-template",
"author": {
"name": "Kiran K",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/devkiran/nextjs-blog-template"
},
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"contentlayer": "^0.2.6",
"daisyui": "^2.19.0",
"next": "12.2.2",
"next-contentlayer": "^0.2.6",
"next-seo": "^5.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"react-twitter-embed": "^4.0.4",
"rehype-highlight": "^5.0.2",
"rehype-prism-plus": "^1.4.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.4",
"@types/node": "18.0.5",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"autoprefixer": "^10.4.7",
"eslint": "^8.19.0",
"eslint-config-next": "^12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.12",
"tailwindcss": "^3.1.6",
"typescript": "4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}