-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint src",
"prepare": "husky install",
"test": "jest --ci --coverage --passWithNoTests",
"cm": "cz"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^16.1.6",
"@types/mdx": "^2.0.13",
"gray-matter": "^4.0.3",
"lucide-react": "^0.525.0",
"next": "^16.1.7",
"next-intl": "^4.5.7",
"next-mdx-remote": "^6.0.0",
"plaiceholder": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-typed": "^2.0.12",
"rehype-pretty-code": "^0.14.1",
"rehype-unwrap-images": "^1.0.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^16.1.6",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"autoprefixer": "^10.4.21",
"commitizen": "^4.3.1",
"cypress": "^14.4.1",
"cz-customizable": "^7.4.0",
"daisyui": "^5.0.43",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-testing-library": "^7.5.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0",
"postcss": "^8.5.10",
"tailwindcss": "^4",
"ts-jest": "^29.3.4",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
}
}