forked from adoptium/adoptium.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.14 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
97
98
99
100
{
"name": "adoptium.net-next",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postbuild": "node scripts/build-search-index.mjs",
"start": "next start",
"test": "vitest run",
"coverage": "vitest run --coverage",
"update-snapshots": "vitest --run -u",
"lint": "eslint .",
"generate:api-types": "openapi-typescript && prettier --write src/types/adoptiumApiTypes.ts src/types/marketplaceApiTypes.ts",
"cf:build": "opennextjs-cloudflare build && cp -r .open-next/server-functions/default/content .open-next/content",
"preview": "npm run cf:build && opennextjs-cloudflare preview",
"deploy": "wrangler deploy",
"versions:upload": "wrangler versions upload",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@asciidoctor/core": "^4.0.6",
"@headlessui/react": "^2.2.10",
"@highcharts/react": "^5.2.2",
"@next/third-parties": "16.2.12",
"@opennextjs/cloudflare": "^1.20.2",
"axios": "^1.18.1",
"gray-matter": "^4.0.3",
"gsap": "^3.15.0",
"html-entities": "^2.6.0",
"html-react-parser": "^6.1.5",
"iso-639-1": "^3.1.6",
"lodash": "^4.18.1",
"motion": "^12.43.0",
"next": "16.2.12",
"next-intl": "^4.13.4",
"next-mdx-remote": "^6.0.0",
"openapi-fetch": "^0.17.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-icons": "^5.7.0",
"react-share": "^5.3.0",
"react-slick": "^0.31.0",
"react-tabs": "^6.1.1",
"react-world-flags": "^1.6.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"rss": "^1.2.2",
"schema-dts": "^2.0.0",
"slick-carousel": "^1.8.1",
"sugar-high": "^1.2.1",
"swiper": "^14.0.7",
"unified": "^11.0.5"
},
"devDependencies": {
"@octokit/types": "^16.0.0",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/lodash": "^4.17.24",
"@types/node": "^26.1.2",
"@types/prismjs": "^1.26.6",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/react-slick": "^0.23.13",
"@types/react-world-flags": "^1.6.0",
"@types/rss": "^0.0.32",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"axios-mock-adapter": "^2.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.8.0",
"eslint-config-next": "16.2.12",
"jsdom": "^30.0.1",
"jsdom-testing-mocks": "^1.16.0",
"openapi-typescript": "^7.13.0",
"pagefind": "^1.5.2",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"vitest": "^4.0.15",
"vitest-axe": "^0.1.0",
"wrangler": "^4.115.0"
},
"overrides": {
"openapi-typescript": {
"typescript": "^6.0.0"
}
}
}