-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "nyxo-website",
"version": "2.0.0",
"private": true,
"description": "Nyxo.app Website",
"author": "Perttu Lähteenlahti <perttu@lahteenlahti.com>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"postbuild": "next-sitemap"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^17.1.6",
"@contentful/rich-text-types": "^17.2.5",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.6.1",
"contentful": "^11.3.0",
"gray-matter": "^4.0.3",
"next": "^16.1.6",
"next-intl": "^4.8.3",
"next-sitemap": "^4.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-prism": "^1.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.0.0",
"eslint-config-next": "^16.1.6",
"jsdom": "^28.1.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}