-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.99 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"new": "yarn tsx src/scripts/createPost.ts",
"dev": "next dev",
"build": "next build",
"start": "yarn serve out",
"export": "next export",
"rss": "yarn tsx src/scripts/createRSS.ts",
"lint": "next lint",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"date-fns": "^2.17.0",
"gray-matter": "^4.0.3",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^5.0.3",
"react-syntax-highlighter": "^15.4.3"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@netlify/plugin-nextjs": "^4.41.3",
"@next/eslint-plugin-next": "^14.0.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@types/babel__core": "^7",
"@types/node": "^20.11.16",
"@types/react": "18.2.54",
"autoprefixer": "^10.4.17",
"babel-eslint": "^9.0.0",
"colors": "^1.4.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"postcss": "^8.4.35",
"prettier": "^1.16.4",
"serve": "^14.2.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"xml-formatter": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"yarn format",
"yarn lint:fix"
]
},
"packageManager": "[email protected]"
}