-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "next-tailwind-template",
"version": "1.0.0",
"private": false,
"description": "Template for Next.js with Tailwind CSS with great SEO",
"main": "pages/index.jsx",
"scripts": {
"build": "next build",
"dev": "next",
"start": "next start",
"format": "yarn prettier --write .",
"find:unused": "next-unused"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iHildy/next-tailwind-template.git"
},
"keywords": [
"tailwind",
"next",
"template"
],
"author": "iHildy",
"license": "MIT",
"bugs": {
"url": "https://github.com/iHildy/next-tailwind-template/issues"
},
"homepage": "https://github.com/iHildy/next-tailwind-template#readme",
"dependencies": {
"@headlessui/react": "^1.4.3",
"@loadable/component": "^5.14.1",
"@tailwindcss/typography": "^0.5.0",
"aos": "2.3.4",
"autoprefixer": "^10.1.0",
"next": "^12.0.8",
"next-seo": "^4.17.0",
"next-themes": "0.0.15",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-dom": "^17.0.1",
"react-headroom": "^3.1.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-router-dom": "^6.2.1",
"react-scroll": "^1.8.4",
"tailwindcss": "^3.0.15"
},
"devDependencies": {
"@types/react": "^17.0.0",
"lint-staged": "^12.1.7",
"next-unused": "^0.0.6",
"postcss": "^8.2.1",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"prettier-plugin-tailwindcss": "^0.1.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
],
"**/*.{md,mdx,json}": [
"prettier --write",
"git add"
]
},
"next-unused": {
"alias": {
"@lib/*": [
"lib/*"
],
"@assets/*": [
"assets/*"
],
"@config/*": [
"config/*"
],
"@components/*": [
"components/*"
],
"@utils/*": [
"utils/*"
]
},
"debug": true,
"include": [
"components",
"lib",
"pages"
],
"exclude": [],
"entrypoints": [
"pages"
]
}
}