-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "mellea-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:md": "markdownlint-cli2 'content/blogs/**/*.md' '*.md'",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"next": "^16.2.1",
"react": "^19.2.4",
"react-compare-slider": "^4.0.0",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"markdownlint-cli2": "^0.22.0",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}