-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "astro-react-starter",
"description": "An Astro website starter with React, SASS and some other things.",
"repository": "[email protected]:petar-v/astro-react-starter.git",
"author": "Petar Vasilev <[email protected]>",
"license": "MIT",
"type": "module",
"version": "1.5",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "yarn checks && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint '**/*.{js,ts,jsx,tsx,cjs,mjs,astro}' --fix",
"stylelint": "stylelint '**/*.{css,scss,js,ts}'",
"prettify": "prettier --write .",
"prepare": "husky install",
"precommit": "lint-staged && yarn checks",
"checks": "astro check && tsc --noEmit"
},
"lint-staged": {
"**/*.{jsx,tsx,js,ts,cjs,mjs}": [
"prettier --write",
"eslint --fix",
"stylelint"
],
"**/*.{scss,css}": [
"prettier --write",
"stylelint"
],
"**/*.{astro,md,mdx,json}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@astrojs/mdx": "^0.19.7",
"@astrojs/prefetch": "^0.3.0",
"@astrojs/react": "^2.3.2",
"@astrojs/sitemap": "^2.0.2",
"@astrojs/tailwind": "^4.0.0",
"@astrojs/ts-plugin": "^1.1.1",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"@types/react-dom": "^18.2.7",
"astro": "^2.10.12",
"astro-auto-import": "^0.3.1",
"astro-icon": "^0.8.1",
"marked": "^7.0.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@types/marked": "^5.0.1",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-perfectionist": "^1.5.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"markdownlint": "^0.30.0",
"postcss-html": "^1.5.0",
"postcss-lit": "^1.1.0",
"prettier": "^3.0.2",
"prettier-plugin-astro": "^0.11.1",
"prettier-plugin-tailwindcss": "^0.5.3",
"remark-collapse": "^0.1.2",
"remark-toc": "^8.0.1",
"sass": "^1.66.1",
"stylelint": "^15.10.3",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-prettier": "^4.0.2"
}
}