-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.95 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
97
98
99
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p 8080",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@giscus/react": "^2.2.8",
"@headlessui/react": "^1.7.14",
"@vercel/analytics": "^1.0.1",
"axios": "^1.4.0",
"cloudinary-build-url": "^0.2.4",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"esbuild": "^0.17.19",
"intercept-stdout": "^0.1.2",
"lodash": "^4.17.21",
"next": "^13.4.2",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-image-lightbox": "^5.1.4",
"react-intersection-observer": "^9.4.3",
"react-lite-youtube-embed": "^2.3.52",
"react-tippy": "^1.4.0",
"react-twitter-widgets": "^1.11.0",
"react-use": "^17.4.0",
"swr": "^2.1.5",
"tailwind-merge": "^1.12.0"
},
"devDependencies": {
"@antfu/ni": "^0.21.3",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@svgr/webpack": "^8.0.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/lodash": "^4.14.194",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.6",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.2.4",
"@types/umami": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"autoprefixer": "^10.4.14",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"mdx-bundler": "^9.2.1",
"next-sitemap": "^4.0.9",
"nprogress": "^0.2.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md,mdx}": [
"prettier -w"
]
}
}