-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.4 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": "franksmovielog-com",
"type": "module",
"version": "10.8.2",
"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 .",
"lint:spelling": "cspell . --no-progress --show-context --show-suggestions",
"lint:spelling:fix": "rm -rf project-words.txt && echo \"# Project Words - DO NOT TOUCH - This is updated through CI\" >> project-words.txt && npm run -s lint:spelling -- --words-only --unique --no-exit-code --no-summary \"**\" | LC_ALL=en_US.UTF-8 sort --ignore-case >> project-words.txt",
"preview": "astro preview",
"start": "astro dev",
"stylelint": "stylelint \"src/**/*.{css,astro}\"",
"stylelint:fix": "stylelint \"src/**/*.{css,astro}\" --fix",
"sync": "./sync.js",
"test:coverage": "vitest run src --coverage.all true --coverage",
"test:update": "vitest -u run src",
"test:watch": "vitest src",
"test": "vitest run src"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/react": "4.2.0",
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.5",
"@pagefind/default-ui": "1.3.0",
"@playform/inline": "0.1.1",
"astro": "5.1.10",
"astro-compressor": "1.0.0",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"gray-matter": "4.0.3",
"p-limit": "6.2.0",
"pagefind": "1.3.0",
"postcss": "8.5.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-select": "5.10.0",
"rehype-raw": "7.0.0",
"rehype-stringify": "10.0.1",
"remark": "15.0.1",
"remark-gfm": "4.0.0",
"remark-rehype": "11.1.1",
"remark-smartypants": "3.0.2",
"satori": "0.12.1",
"sharp": "0.33.5",
"strip-markdown": "6.0.0",
"tailwindcss": "3.4.17",
"unist-util-visit": "5.0.0",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@prettier/plugin-xml": "3.4.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/eslint__js": "8.42.3",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/node": "22.12.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/unist": "3.0.3",
"@vitest/coverage-istanbul": "3.0.4",
"@vitest/eslint-plugin": "1.1.25",
"chokidar": "4.0.3",
"cspell": "8.17.3",
"eslint": "9.19.0",
"eslint-plugin-astro": "1.3.1",
"eslint-plugin-perfectionist": "4.7.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"eslint-plugin-tailwindcss": "3.18.0",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"jsdom": "26.0.0",
"knip": "5.43.6",
"postcss-html": "1.8.0",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.11",
"react-select-event": "5.5.1",
"sirv": "3.0.0",
"stylelint": "16.14.1",
"stylelint-config-standard": "37.0.0",
"stylelint-order": "6.0.4",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vitest": "3.0.4"
},
"engines": {
"node": "22.13.1",
"npm": "11.1.0"
},
"overrides": {
"vite": "6.0.11"
}
}