-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 1 KB
/
package.json
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
{
"name": "dev.ui",
"version": "1.0.0",
"author": "kumard3",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"export": "next build && next export",
"postbuild": "next-sitemap",
"lint": "next lint --fix --dir app --dir components --dir lib --dir layouts --dir scripts",
"lint.fix": "next lint --fix"
},
"dependencies": {
"next": "^14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@builder.io/partytown": "^0.8.1",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"autoprefixer": "^10.4.16",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.32",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.0",
"typescript": "5.3.3",
"eslint": "^8.51.0",
"eslint-config-next": "14.1.1"
}
}