-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "afonsocosta.dev",
"type": "module",
"version": "0.2.3",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "astro check",
"ci:check": "npm run lint && npm run format:check && npm run check && npm run build",
"ci:fix": "npm run lint -- --fix && npm run format && npm run check",
"astro": "astro"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.1",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^9.39.4",
"astro-eslint-parser": "^1.4.0",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
}
}