This repository has been archived by the owner on Feb 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.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
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
{
"name": "mimu-memo",
"description": "mimu's Site",
"version": "1.0.0",
"author": "mimu",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint ./src/**/*.{ts,tsx,astro}",
"lint:fix": "eslint --fix ./src/**/*.{ts,tsx,astro}",
"prepare": "husky install",
"vrt": "npx playwright test",
"vrt:ui": "npx playwright test --ui",
"vrt:update": "npx playwright test -u"
},
"dependencies": {
"@astrojs/image": "^0.17.1",
"@astrojs/mdx": "^0.19.7",
"@astrojs/react": "^2.2.1",
"@astrojs/vercel": "^6.0.1",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@vercel/analytics": "^1.0.1",
"astro": "^4.0.3",
"dayjs": "^1.11.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark": "^14.0.3",
"remark-breaks": "^3.0.3",
"rss-parser": "^3.13.0",
"sass": "^1.63.6",
"strip-markdown": "^5.0.1",
"tocbot": "^4.21.0"
},
"volta": {
"node": "20.3.1"
},
"config": {
"siteName": "mimu-memo",
"description": "平凡エンジニアの個人学習メモ",
"siteUrl": {
"dev": "http://localhost:3000",
"prod": "https://mimu-memo.com"
},
"lang": "ja",
"locale": "ja_JP"
},
"devDependencies": {
"@playwright/test": "^1.36.1",
"@testing-library/react": "^14.0.0",
"@types/dompurify": "^3.0.2",
"@types/react": "^18.2.14",
"@typescript-eslint/parser": "^5.60.1",
"astro-auto-import": "^0.3.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-astro": "^0.27.2",
"eslint-plugin-autofix": "^1.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"vitest": "^0.33.0"
},
"lint-staged": {
"*.{ts,tsx,astro}": "eslint ./src/**/*.{ts,tsx,astro}"
}
}