-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.65 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=8000 concurrently \"next dev\" \"tsx ./watcher.ts\" --kill-others",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css,scss}'"
},
"dependencies": {
"concurrently": "^9.0.0",
"gray-matter": "^4.0.3",
"minireset.css": "^0.0.7",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-breaks": "^4.0.0",
"remark-emoji": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-images": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"tsx": "^4.7.1",
"unified": "^11.0.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"better-typescript-lib": "^2.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.25.2",
"eslint-plugin-react-hooks": "^5.0.0",
"markuplint": "^4.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}