-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.95 KB
/
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
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
{
"name": "portfolio",
"type": "module",
"version": "2.0.0",
"browserslist": [
"defaults and fully supports es6-module"
],
"scripts": {
"prepare": "husky install",
"dev": "astro dev --host 0.0.0.0",
"start": "astro dev --host 0.0.0.0",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . --ignore-unknown --log-level=warn",
"format:check": "npm run format -- --check",
"format:fix": "npm run format -- --write",
"lint": "eslint .",
"lint:check": "npm run lint -- --max-warnings 0",
"lint:fix": "npm run lint -- --fix .",
"test:unit": "vitest",
"test:unit:ci": "vitest run"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --ignore-unknown --write"
]
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.0.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/vercel": "^8.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vercel/og": "^0.6.2",
"@vercel/speed-insights": "^1.0.12",
"astro": "^5.0.4",
"nodemailer": "^6.9.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"typescript": "^5.5.4",
"unified": "^11.0.5",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.32",
"postcss-nested": "^6.2.0",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.8",
"vitest": "^2.1.5"
},
"overrides": {
"vite": "6.0.2"
}
}