-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "hgsj.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint src/**/*.{ts,astro} --fix",
"format": "prettier --check --write src/** ",
"fix": "npm run lint && npm run format",
"prepare": "husky install"
},
"lint-staged": {
"src/**": "npm run fix"
},
"dependencies": {
"@astrojs/mdx": "^0.17.0",
"@astrojs/rss": "^2.1.1",
"@astrojs/sitemap": "^1.2.2",
"@astrojs/tailwind": "^3.0.1",
"@tailwindcss/typography": "^0.5.9",
"astro": "^2.0.14",
"astro-icon": "^0.8.0",
"daisyui": "^2.51.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"typescript": "^4.9.5"
}
}