-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.27 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
{
"name": "blog.re-taro.dev",
"type": "module",
"version": "2.4.0",
"private": true,
"packageManager": "[email protected]",
"description": "My personal tech blog",
"author": "Rintaro Itokawa <[email protected]> (https://re-taro.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/re-taro/blog.re-taro.dev"
},
"scripts": {
"build": "vinxi build",
"dev": "vinxi dev",
"fmt": "pnpm run /^fmt:.*/",
"fmt:eslint": "pnpm run lint:eslint --fix",
"fmt:textlint": "pnpm run lint:textlint --fix",
"gen": "plop",
"lint": "pnpm run --parallel /^lint:.*/",
"lint:eslint": "eslint .",
"lint:tsc": "tsc -p . --incremental --noEmit",
"lint:textlint": "textlint contents/**/slug.md",
"prebuild": "pnpm run /^prebuild:.*/",
"prebuild:pandacss": "panda codegen --silent",
"prebuild:partytown": "partytown copylib public/~partytown",
"prebuild:content-collections": "content-collections build",
"prepare": "panda codegen",
"start": "NODE_ENV=production wrangler pages dev dist",
"test": "pnpm run --parallel /^test:.*/",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"dependencies": {
"@solidjs/meta": "0.29.4",
"@solidjs/router": "0.14.8",
"@solidjs/start": "1.0.10",
"dompurify": "3.2.3",
"shiki": "1.26.1",
"solid-js": "1.9.3",
"temporal-polyfill": "0.2.5",
"xml2js": "0.6.2"
},
"devDependencies": {
"@axe-core/playwright": "4.10.1",
"@builder.io/partytown": "0.10.2",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@content-collections/cli": "0.1.6",
"@content-collections/core": "0.8.0",
"@content-collections/vite": "0.2.3",
"@pandacss/dev": "0.47.1",
"@playwright/test": "1.49.1",
"@qnighy/dedent": "0.1.1",
"@re-taro/eslint-config": "5.2.1",
"@shikijs/transformers": "1.26.1",
"@types/dompurify": "3.2.0",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/node": "22.10.5",
"@types/unist": "3.0.3",
"@types/xml2js": "0.4.14",
"axe-core": "4.10.2",
"axe-playwright": "2.0.3",
"concurrently": "9.1.2",
"eslint": "9.14.0",
"eslint-plugin-format": "0.1.3",
"eslint-plugin-solid": "0.14.3",
"github-slugger": "2.0.0",
"hast-util-from-html": "2.0.3",
"hast-util-select": "6.0.3",
"hast-util-to-html": "9.0.4",
"mdast-util-from-markdown": "2.0.2",
"playwright": "1.49.1",
"plop": "4.0.1",
"postcss": "8.4.49",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-retext": "6.0.0",
"retext-english": "5.0.0",
"retext-equality": "7.1.0",
"retext-stringify": "4.0.0",
"schema-dts": "1.1.2",
"sharp": "0.33.5",
"sirv-cli": "3.0.0",
"textlint": "14.4.2",
"textlint-filter-rule-comments": "1.2.2",
"textlint-rule-ja-space-around-link": "2.4.2",
"textlint-rule-preset-overflow-techblog": "0.0.2",
"ts-array-length": "0.1.3",
"ts-pattern": "5.6.0",
"typescript": "5.7.2",
"ulid": "2.3.0",
"unfurl.js": "6.4.0",
"unified": "11.0.5",
"unist-util-visit": "5.0.0",
"vinxi": "0.4.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8",
"wait-on": "8.0.1",
"wrangler": "3.99.0"
},
"browserslist": [
"defaults and > 0.3%"
]
}