-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.07 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.07 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
{
"name": "personal-website",
"type": "module",
"author": {
"name": "Hector Castelli Zacharias",
"email": "hector.zacharias@gmail.com"
},
"version": "0.0.1",
"scripts": {
"postinstall": "npm-run-all postinstall:*",
"postinstall:sync": "astro sync",
"postinstall:feed": "curl https://raw.githubusercontent.com/genmon/aboutfeeds/main/tools/pretty-feed-v3.xsl -o public/pretty-feed-v3.xsl",
"astro": "astro",
"build": "astro build",
"prebuild": "npm-run-all prebuild:*",
"prebuild:diagrams": "scripts/render-diagrams.sh",
"prebuild:skills": "scripts/reset-skill-groups.sh",
"postbuild": "npm-run-all postbuild:*",
"postbuild:update-fixtures": "scripts/update-fixtures.sh",
"start": "astro dev",
"dev": "start-server-and-test 'dev:server' http://localhost:4321/ 'dev:test'",
"dev:server": "npm run start",
"dev:test": "npm-run-all --parallel dev:test:*",
"dev:test:unit": "vitest",
"dev:test:e2e": "cypress open",
"test": "npm-run-all test:*",
"test:check": "astro check",
"test:unit": "vitest run",
"test:e2e": "start-server-and-test start http://localhost:4321/ 'cypress run'",
"pretest:e2e": "npm run build",
"create:blog": "node scripts/blog/create.js",
"create:project": "node scripts/project/create.js",
"create:resume": "node scripts/resume/create.js",
"create:tag": "node scripts/tag/create.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.1.1",
"@astrojs/tailwind": "^5.1.0",
"@tailwindcss/typography": "^0.5.12",
"astro": "^4.16.3",
"astro-og-canvas": "^0.5.4",
"astro-robots-txt": "^1.0.0",
"micromark": "^4.0.0",
"micromark-extension-gfm": "^3.0.0",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@astrojs/check": "^0.8.3",
"@mermaid-js/mermaid-cli": "^11",
"axe-core": "^4.8.3",
"cypress": "^13.12.0",
"cypress-axe": "^1.5.0",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^2.0.7",
"typescript": "^5.6.2",
"vitest": "^2.0.3"
}
}