-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "myblog-reinoldo",
"private": true,
"type": "module",
"description": "Personal blog (Astro + React)",
"version": "0.2.0",
"author": "Reinoldo Sommer",
"dependencies": {
"@astrojs/react": "^5.0.2",
"@styled-icons/boxicons-logos": "^10.47.0",
"@styled-icons/boxicons-regular": "^10.47.0",
"@styled-icons/material-outlined": "^10.47.0",
"algoliasearch": "^5.20.0",
"astro": "^6.1.1",
"disqus-react": "^1.1.7",
"dotenv": "^16.4.7",
"gray-matter": "^4.0.3",
"marked": "^15.0.7",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-instantsearch": "^7.15.0",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.8.2"
},
"keywords": [
"astro",
"blog"
],
"license": "0BSD",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"algolia:index": "node scripts/push-algolia.mjs",
"build:index": "astro build && node scripts/push-algolia.mjs",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,astro}\"",
"test": "prettier --check \"src/**/*.{js,jsx,ts,tsx,astro}\""
},
"repository": {
"type": "git",
"url": "https://github.com/reinoldo/myblog"
},
"engines": {
"node": ">=22.12.0"
}
}