-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.05 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
{
"name": "vanilla",
"version": "0.1.0",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/lonr/vanilla"
},
"scripts": {
"build": "next build",
"dev": "next dev -H 127.0.0.1",
"lint": "next lint",
"copy-assets": "tsx scripts/copyAssetsToPublic.ts",
"gen-site-data": "tsx scripts/genSiteData.ts",
"gen-posts-data": "tsx scripts/genPostsData.ts",
"gen-rss": "tsx scripts/genRss.ts",
"start": "next start",
"prepare": "husky",
"commit": "git-cz"
},
"dependencies": {
"@next/env": "^15.1.7",
"@octokit/core": "^6.1.3",
"@octokit/graphql-schema": "^15.25.0",
"@primer/octicons-react": "^19.15.0",
"@primer/primitives": "^10.3.4",
"@primer/react": "37.12.0",
"@styled-system/css": "^5.1.5",
"@wooorm/starry-night": "^3.6.0",
"clsx": "^2.1.1",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.7",
"fs-extra": "^11.3.0",
"github-markdown-css": "^5.8.1",
"hast-util-to-html": "^9.0.4",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.0",
"image-size": "^1.2.0",
"mime": "^4.0.6",
"next": "15.1.7",
"react": "19.0.0",
"react-dom": "19.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-infer-description-meta": "^2.0.0",
"rehype-infer-reading-time-meta": "^2.0.0",
"rehype-infer-title-meta": "^2.0.0",
"rehype-mathjax": "^6.0.0",
"rehype-raw": "^7.0.0",
"rehype-react": "^8.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gemoji": "^8.0.0",
"remark-gemoji-to-emoji": "^1.1.0",
"remark-gfm": "^4.0.1",
"remark-github": "^12.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"styled-components": "^5.3.10",
"styled-system": "^5.1.5",
"to-vfile": "^8.0.0",
"unified": "^11.0.5",
"unified-infer-git-meta": "^2.0.0",
"unist-util-select": "^5.1.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
"vfile-matter": "^5.0.0",
"xast-util-feed": "^2.0.0",
"xast-util-to-xml": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/cz-commitlint": "^19.6.1",
"@primer/stylelint-config": "^13.2.2",
"@types/fs-extra": "^11.0.1",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/styled-components": "^5.1.26",
"@types/styled-system": "^5.1.23",
"@types/styled-system__css": "^5.0.17",
"@types/unist": "^3.0.3",
"commitizen": "^4.3.1",
"eslint": "8.57.1",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-primer-react": "^6.1.6",
"husky": "^9.1.7",
"inquirer": "9",
"lint-staged": "^15.4.3",
"micromatch": "^4.0.8",
"prettier": "3.5.0",
"stylelint": "16.3.1",
"tsx": "^4.19.2",
"typescript": "5.7.3"
}
}