-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "tldevr",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:css": "npx tailwindcss -i ./src/styles.css -o ./dist/output.css --minify",
"postbuild": "next-sitemap"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.3",
"@mui/material": "^6.4.3",
"@mui/material-nextjs": "^7.3.6",
"@tanstack/react-query": "^5.66.0",
"@tiptap/extension-code-block": "^2.11.5",
"@tiptap/extension-code-block-lowlight": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-strike": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"html-react-parser": "^5.2.2",
"next": "^14.2.14",
"next-sitemap": "^4.2.3",
"postcss": "^8.5.1",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-next": "^13.x.x",
"postcss": "^8.5.1"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
]
}