-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 KB
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
{
"name": "nextblogapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "npx serve@latest out",
"lint": "next lint",
"lint:fix": "eslint --fix",
"prepare": "husky install",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18.x"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@next/third-parties": "^15.2.0",
"@types/cheerio": "^0.22.35",
"@types/react-google-recaptcha": "^2.1.9",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"eslint": "^9.21.0",
"eslint-config-next": "^15.2.0",
"eslint-config-prettier": "^10.0.2",
"feed": "^4.2.2",
"microcms-js-sdk": "^3.1.2",
"next": "^15.2.4",
"preline": "^2.7.0",
"prettier": "^3.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-markdown": "^10.0.0",
"react-onesignal": "^3.0.1",
"react-share": "^5.2.2",
"react-slick": "^0.31.0",
"remark-gfm": "^4.0.1",
"slick-carousel": "^1.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@next/eslint-plugin-next": "^15.2.0",
"@types/react": "^19.0.10",
"@types/react-slick": "^0.23.13",
"autoprefixer": "^10.4.20",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"next-themes": "^0.4.4",
"tailwindcss": "^3.4.17"
}
}