-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "smswithoutborders-blog",
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons": "~5.6.1",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"gray-matter": "^4.0.3",
"next": "14.2.35",
"next-nprogress-bar": "^2.4.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-markdown": "^9.1.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.33",
"@types/node": "^20.19.24",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-formatter-summary": "^1.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.js,jsx,ts,tsx": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --cache -w"
}
}