forked from NotHarshhaa/devops-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "devops-cheatsheet",
"version": "1.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/process-markdown.mjs",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@next/eslint-plugin-next": "16.0.10",
"@tailwindcss/typography": "^0.5.16",
"framer-motion": "^12.23.9",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "^2.24.0",
"lucide-react": "^0.510.0",
"marked": "^15.0.11",
"next": "16.0.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"autoprefixer": "^10.4.17",
"critters": "^0.0.23",
"eslint": "9.39.2",
"eslint-config-next": "16.0.10",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}