-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "next lint",
"clean": "rimraf .next node_modules"
},
"dependencies": {
"gray-matter": "4.0.3",
"next": "^15.0.3",
"prism-react-renderer": "^2.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype": "^13.0.2",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "16.0.1",
"remark-math": "6.0.0",
"remark-rehype": "11.1.1",
"unified": "11.0.5"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.15",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "20.17.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "14.0.4",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"node-mocks-http": "^1.17.2",
"postcss": "8.4.49",
"rimraf": "5.0.10",
"tailwindcss": "3.4.15",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "5.6.3"
},
"engines": {
"node": "22.x"
}
}