-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"preview": "astro preview",
"deploy": "astro build; firebase deploy",
"astro": "astro",
"new-post": "pnpm scaffdog generate Article",
"prepare": "husky install"
},
"dependencies": {
"@astrojs/mdx": "^0.11.4",
"@astrojs/react": "^1.2.1",
"@astrojs/sitemap": "^1.0.0",
"@astrolib/seo": "^0.2.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^1.5.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"scaffdog": "^2.4.0",
"tabler-icons-react": "^1.55.0",
"zenn-content-css": "^0.1.131"
},
"devDependencies": {
"@astrojs/partytown": "^1.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.6.0",
"ress": "^5.0.2",
"sass": "^1.55.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}