-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) Β· 3.14 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "beaver-ssg",
"version": "0.1.4",
"description": "a modern SSG tool to generate static sites with MarkDown",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx ./",
"prepare": "husky install",
"prepare:e2e": "tsx scripts/prepare-e2e.cts",
"test:init": "vitest --ui",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "tsx ./scripts/release.ts"
},
"keywords": [
"ssg",
"vite",
"react-ssr"
],
"author": "albert26193",
"license": "MIT",
"files": [
"src/*"
],
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@iconify-json/carbon": "^1.1.21",
"@playwright/test": "1.26.1",
"@types/fs-extra": "^11.0.2",
"@types/hast": "^3.0.1",
"@types/lodash": "^4.14.200",
"@types/mdast": "^3.0.10",
"@types/node": "^20.6.5",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/ui": "^0.34.6",
"chalk": "^5.3.0",
"commitlint": "^17.7.2",
"conventional-changelog-cli": "^4.1.0",
"enquirer": "^2.4.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "8.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mdast-util-mdxjs-esm": "^2.0.1",
"minimist": "^1.2.8",
"prettier": "^3.0.3",
"remark-mdx": "^2.3.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-stringify": "^11.0.0",
"rollup": "^3.29.4",
"sass": "^1.69.5",
"semver": "^7.6.0",
"serve": "^14.2.1",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"unified": "^11.0.3",
"unist-util-visit": "^5.0.0",
"vitest": "^0.34.6"
},
"dependencies": {
"@loadable/component": "^5.15.3",
"@mdx-js/rollup": "2.1.3",
"@vitejs/plugin-react": "^4.1.0",
"acorn": "^8.10.0",
"cac": "^6.7.14",
"classnames": "^2.5.1",
"compression": "^1.7.4",
"copy-to-clipboard": "^3.3.3",
"esbuild": "^0.20.1",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.1",
"lodash-es": "^4.17.21",
"ora": "^7.0.1",
"polka": "^0.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-router-dom": "^6.16.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^3.0.0",
"shiki": "^0.14.5",
"sirv": "^2.0.3",
"unocss": "^0.57.1",
"vite": "^4.4.9"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"eslint --fix"
]
},
"bin": {
"beaver": "bin/beaver.js"
}
}