-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.66 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.66 KB
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
{
"name": "franksbooklog-com",
"type": "module",
"version": "2.0.0",
"scripts": {
"astro": "astro",
"build": "astro build",
"check": "astro check",
"dev": "astro dev",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"knip": "knip",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fix": "stylelint \"src/**/*.css\" --fix",
"preview": "astro preview",
"start": "astro dev",
"sync": "./scripts/sync.ts",
"test:coverage": "vitest run src --coverage",
"test:update": "vitest -u run src",
"test": "vitest run src"
},
"dependencies": {
"@astrojs/check": "0.9.7",
"@astrojs/react": "5.0.0",
"@astrojs/rss": "4.0.17",
"@astrojs/sitemap": "3.7.1",
"@tailwindcss/vite": "4.2.1",
"@takumi-rs/core": "0.73.1",
"@takumi-rs/helpers": "0.73.1",
"astro": "6.0.4",
"astro-compressor": "1.3.0",
"gray-matter": "4.0.3",
"pagefind": "1.4.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"rehype-raw": "7.0.0",
"rehype-stringify": "10.0.1",
"remark": "15.0.1",
"remark-gfm": "4.0.1",
"remark-rehype": "11.1.2",
"remark-smartypants": "3.0.2",
"sharp": "0.34.5",
"strip-markdown": "6.0.0",
"tailwindcss": "4.2.1",
"unist-util-visit": "5.1.0"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/hast": "3.0.4",
"@types/jsdom": "28.0.0",
"@types/mdast": "4.0.4",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.1.0",
"@vitest/eslint-plugin": "1.6.12",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"chokidar": "5.0.0",
"eslint": "9.39.4",
"eslint-plugin-astro": "1.6.0",
"eslint-plugin-better-tailwindcss": "4.3.2",
"eslint-plugin-perfectionist": "5.6.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-separate-type-imports": "git://github.com/fshowalter/eslint-plugin-separate-type-imports.git",
"eslint-plugin-unicorn": "63.0.0",
"jsdom": "29.0.0",
"knip": "5.86.0",
"prettier": "3.8.1",
"prettier-plugin-astro": "0.14.1",
"sirv": "3.0.2",
"stylelint": "17.4.0",
"stylelint-config-standard": "40.0.0",
"stylelint-order": "8.1.1",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vitest": "4.1.0",
"vitest-fail-on-console": "0.10.1"
},
"engines": {
"node": "24.14.0",
"npm": "11.11.1"
}
}