-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.26 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.26 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
91
92
93
94
95
96
{
"name": "marvelorder",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"bun": "1.2.15",
"node": ">=24.4.0 <25",
"yarn": "forbidden, this project uses bun",
"pnpm": "forbidden, this project uses bun",
"npm": "forbidden, this project uses bun"
},
"scripts": {
"test": "vitest",
"type-check": "astro check",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"dev-netlify": "netlify dev",
"dev:worker-images": "wrangler dev --config wrangler.image-spike.jsonc",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build-test": "vitest run",
"preview": "astro preview",
"deploy:worker-images": "wrangler deploy --config wrangler.image-spike.jsonc",
"pull": "deno run -q -A --unstable scripts/pull.ts",
"add-amazon-links": "bunx tsx scripts/add-amazon-links.ts",
"pull-mcu-timeline-sheet": "tsx scripts/pull-mcu-timeline-sheet.ts",
"write-filter-stories": "tsx scripts/write-filter-stories.ts",
"write-movies-fandom-timeline": "tsx scripts/write-movies-fandom-timeline.ts",
"netlify-build": "bun run build-test && bun run build"
},
"dependencies": {
"@algolia/client-search": "4.13.1",
"@astrojs/netlify": "7.0.1",
"@cf-wasm/photon": "^0.3.4",
"@docsearch/css": "3.1.0",
"@docsearch/react": "3.1.0",
"@types/react": "18.3.28",
"amazon-paapi": "1.0.6",
"axios": "0.27.2",
"change-case": "4.1.2",
"daisyui": "2.17.0",
"dotenv": "16.0.1",
"esbuild": "0.27.3",
"etag": "1.8.1",
"fast-glob": "3.2.11",
"fs-extra": "10.1.0",
"gray-matter": "4.0.3",
"image-size": "1.0.1",
"image-type": "4.1.0",
"is-svg": "4.3.2",
"jsdom": "20.0.3",
"just-split": "3.1.1",
"lazysizes": "5.3.2",
"linkedom": "0.14.26",
"localforage": "1.10.0",
"luxon": "2.4.0",
"node-fetch": "3.2.10",
"preact": "10.7.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"scroll-into-view-if-needed": "2.2.29",
"sharp": "0.34.5",
"slugify": "1.6.5",
"tailwindcss": "3.4.19",
"tinacms": "1.6.1",
"uuid": "9.0.0",
"wink-eng-lite-model": "https://github.com/winkjs/wink-eng-lite-model/releases/download/1.3.1/wink-eng-lite-model-1.3.1.tgz",
"wink-eng-lite-web-model": "1.5.0",
"wink-nlp": "1.14.2"
},
"devDependencies": {
"@astrojs/check": "0.9.7",
"@astrojs/preact": "5.0.0",
"@astrojs/react": "5.0.0",
"@astrojs/sitemap": "3.7.1",
"@astrojs/vue": "6.0.0",
"@biomejs/biome": "2.4.6",
"@faker-js/faker": "7.1.0",
"@tinacms/cli": "1.5.43",
"@types/node": "24.4.0",
"@types/react-dom": "18.3.7",
"astro": "6.0.3",
"autoprefixer": "10.4.27",
"deepmerge-ts": "4.1.0",
"node-gyp": "12.2.0",
"postcss": "8.5.8",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "3.5.0",
"vitest": "4.0.18",
"vue": "3.5.30",
"wrangler": "^4.72.0"
}
}