-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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
{
"name": "@example/basics",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently \"astro dev\" \"yarn run tailwind\"",
"tailwind": "tailwindcss --config tailwind.config.cjs -i ./public/styles/tailwind.css -o ./public/styles/global.css --watch",
"build:css": "NODE_ENV=production tailwindcss --config tailwind.config.cjs -i ./public/styles/tailwind.css -o ./dist/styles/global.css -m",
"build": "astro build && yarn run build:css && yarn run pagefind",
"preview": "astro preview",
"prepare": "husky install",
"pagefind": "pagefind --site dist"
},
"devDependencies": {
"@astrojs/mdx": "^1.0.0",
"@astrojs/preact": "^3.0.0",
"@tailwindcss/typography": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"astro": "^3.0.3",
"classnames": "^2.3.1",
"concurrently": "^8.2.1",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-validate-jsx-nesting": "^0.1.0",
"hast-util-to-string": "^3.0.0",
"hastscript": "^8.0.0",
"husky": "^8.0.1",
"lint-staged": "^14.0.1",
"pagefind": "^1.1.0",
"preact": "^10.6.5",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"tailwindcss": "^3.2.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,astro}": [
"eslint --fix",
"prettier --write --ignore-unknown --plugin-search-dir=. ."
]
},
"dependencies": {
"@astrojs/check": "^0.2.0",
"@astrojs/rss": "^3.0.0",
"@jsdevtools/rehype-url-inspector": "^2.0.2",
"@preact/compat": "npm:@preact/compat",
"@tailwindui/react": "^0.1.1",
"markdown-it": "^13.0.1",
"markdown-it-front-matter": "^0.2.3",
"nbb": "^0.7.132",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-hook-form": "^7.43.1",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.32.5",
"typescript": "^5.2.2",
"yaml": "^2.1.1",
"zx": "^7.0.8"
},
"packageManager": "[email protected]"
}