-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
91 lines (91 loc) · 3.08 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
{
"name": "marvelorder",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@8.6.12",
"engines": {
"pnpm": "^8.6.*",
"node": ">=18",
"yarn": "forbidden, this project uses pnpm",
"npm": "forbidden, this project uses pnpm"
},
"scripts": {
"test": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"dev-netlify": "netlify dev",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build-test": "vitest run",
"preview": "astro preview",
"pull": "deno run -q -A --unstable scripts/pull.mjs",
"add-amazon-links": "npx 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": "npm run build-test && npm run build"
},
"dependencies": {
"@algolia/client-search": "^4.13.1",
"@astrojs/netlify": "^2.3.0",
"@astrojs/node": "^5.3.0",
"@docsearch/css": "^3.1.0",
"@docsearch/react": "^3.1.0",
"@types/react": "^17.0.45",
"amazon-paapi": "^1.0.6",
"axios": "^0.27.2",
"canvas": "file:./canvas",
"change-case": "^4.1.2",
"daisyui": "^2.17.0",
"dotenv": "^16.0.1",
"esbuild": "^0.14.48",
"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": "^17.0.2",
"react-dom": "^17.0.2",
"scroll-into-view-if-needed": "^2.2.29",
"sharp": "^0.32.1",
"slugify": "^1.6.5",
"tailwindcss": "^3.1.4",
"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": {
"@antfu/eslint-config": "^0.39.6",
"@astrojs/preact": "^2.2.1",
"@astrojs/react": "^2.2.1",
"@astrojs/sitemap": "^1.3.3",
"@astrojs/tailwind": "^3.1.3",
"@astrojs/vue": "^2.2.1",
"@faker-js/faker": "^7.1.0",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"astro": "^2.7.2",
"deepmerge-ts": "^4.1.0",
"eslint": "^8.44.0",
"eslint-plugin-astro": "^0.27.2",
"tsx": "^3.8.2",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.12.9",
"vue": "^3.2.36"
}
}