forked from juxt/astro-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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
{
"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",
"preview": "astro preview",
"prepare": "husky install",
"algolia": "cd algolia && nbb index.cljs"
},
"devDependencies": {
"@astrojs/image": "^0.17.1",
"@astrojs/mdx": "^0.19.7",
"@astrojs/preact": "^2.2.1",
"@tailwindcss/typography": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"algoliasearch": "^4.14.2",
"astro": "^2.7.0",
"classnames": "^2.3.1",
"concurrently": "^7.5.0",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-plugin-astro": "^0.15.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-validate-jsx-nesting": "^0.1.0",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"preact": "^10.6.5",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.1.1",
"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": {
"@preact/compat": "^17.1.1",
"@tailwindui/react": "^0.1.1",
"instantsearch.css": "^7.4.5",
"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",
"react-instantsearch-hooks-web": "^6.32.0",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.31.3",
"typescript": "^4.9.5",
"yaml": "^2.1.1",
"zx": "^7.0.8"
}
}