-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) Β· 2.4 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) Β· 2.4 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "marcomadera",
"version": "1.0.0",
"description": "Personal blog by Marco Madera https://marcomadera.com",
"repository": {
"type": "git",
"url": "git+https://github.com/MarcoMadera/Blog.git"
},
"sideEffects": false,
"keywords": [
"blog",
"portfolio"
],
"author": "Marco Madera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarcoMadera/Blog/issues"
},
"homepage": "https://marcomadera.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "node ./lib/feed.mjs && node ./lib/sitemap.mjs",
"test": "jest --watch --verbose --silent",
"test:ci": "jest --ci"
},
"dependencies": {
"@mapbox/rehype-prism": "0.9.0",
"firebase": "11.10.0",
"firebase-admin": "12.7.0",
"gray-matter": "4.0.3",
"nanoid": "5.1.5",
"next": "14.2.35",
"nprogress": "0.2.0",
"plaiceholder": "3.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-lite-youtube-embed": "2.4.0",
"react-markdown": "9.0.3",
"react-slugify": "4.0.1",
"react-string-replace": "1.1.1",
"reading-time": "1.5.0",
"rehype-parse": "^9.0.1",
"rehype-raw": "7.0.0",
"rehype-react": "8.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.0",
"remark-shiki-twoslash": "3.1.3",
"sharp": "0.33.5",
"twemoji": "14.0.2",
"unified": "11.0.5"
},
"devDependencies": {
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.1",
"@types/lodash": "4.14.202",
"@types/node": "20.10.5",
"@types/nprogress": "0.2.3",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@types/rss": "0.0.32",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "6.2.0",
"globby": "14.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.1.1",
"react-test-renderer": "18.2.0",
"rss": "1.2.2",
"typescript": "5.3.3"
}
}