-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "open-elements-website",
"version": "1.0.0",
"type": "module",
"private": true,
"pnpm": {
"overrides": {
"postcss": "^8.5.18",
"sharp": "^0.35.0",
"@babel/core": "^7.29.6",
"js-yaml@^3": "^3.15.0",
"js-yaml@^4": "^4.3.0",
"brace-expansion@^1": "^1.1.16",
"brace-expansion@^5": "^5.0.8"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format:check": "prettier --check 'src/**'",
"format": "prettier --write 'src/**'",
"test:e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/mdast": "^4.0.4",
"@types/node": "^25.0.3",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.23",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-next": "^16.2.11",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"postcss": "^8.5.18",
"prettier": "^3.8.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"unified": "^11.0.5"
},
"dependencies": {
"@netlify/plugin-nextjs": "^5.15.3",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"next": "^16.2.11",
"next-intl": "^4.9.2",
"prismjs": "^1.30.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"tailwind-scrollbar": "^4.0.2",
"unist-util-visit": "^5.1.0"
}
}