-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "sebbo.io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint \"src/**/*.{astro,css}\""
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/tailwind": "5.1.5",
"@fontsource/kalam": "^5.1.1",
"@octokit/rest": "^21.1.0",
"astro": "5.1.9",
"node-html-parser": "^7.0.1",
"tailwindcss": "3.4.17"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"eslint-plugin-astro": "^1.3.1",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.13.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.19.1"
}
}