-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 994 Bytes
/
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
{
"name": "villasv.github.io",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint",
"format": "prettier --write .",
"build": "npm run build-feed && next build",
"build-feed": "node scripts/generate-rss.js",
"test": "jest --coverage"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^15.1.6",
"@next/mdx": "^15.1.6",
"@types/jest": "^29.5.14",
"@types/mdx": "^2.0.13",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/rss": "^0.0.32",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-mdx": "^3.1.5",
"fast-xml-parser": "^4.5.1",
"jest": "^29.7.0",
"next": "^15.1.6",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rss": "^1.2.2",
"typescript": "^5.7.3"
}
}