-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.53 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
{
"dependencies": {
"@astrojs/tailwind": "^6.0.2",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/outfit": "^5.2.8",
"@primer/octicons-react": "^19.25.0",
"astro": "^5.18.1",
"astro-compress": "^2.4.1",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^10.3.0",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsonc": "^3.1.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"simple-icons": "^16.18.0",
"stylelint": "^17.11.0",
"stylelint-config-standard": "^40.0.0",
"typescript-eslint": "^8.59.2"
},
"lint-staged": {
"*.astro": "prettier --write",
"*.json": "eslint --fix",
"*.{css,scss}": "stylelint --fix",
"*.{html,json,md}": "prettier --write",
"*.{js,astro}": "eslint --fix"
},
"name": "astrolink",
"scripts": {
"astro": "astro",
"build": "astro build",
"dev": "astro dev",
"format": "prettier --write .",
"icons": "node scripts/sync-icons.mjs",
"lint": "eslint . && stylelint \"src/**/*.css\" && markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev"
},
"type": "module",
"version": "0.0.1"
}