-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "lancher.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"prepare": "husky",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@astrojs/react": "^5.0.3",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^6.1.4",
"github-slugger": "^2.0.0",
"jaamd": "^0.1.15",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.7.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md}": [
"prettier --write"
]
}
}